We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75768ac commit 6fe5bd1Copy full SHA for 6fe5bd1
Dockerfile
@@ -21,12 +21,10 @@ RUN apt-get update && \
21
22
# Copy only essential files first to leverage Docker's caching
23
COPY requirements.txt ./
24
-COPY .github/requirements-pip.txt ./.github/requirements-pip.txt
25
-COPY .github/requirements-hashed.txt ./.github/requirements-hashed.txt
26
27
# Install dependencies efficiently
28
-RUN pip install --no-cache-dir -r .github/requirements-pip.txt && \
29
- pip install --no-cache-dir -r .github/requirements-hashed.txt
+RUN pip install --no-cache-dir --upgrade pip==25.0.1 && \
+ pip install --no-cache-dir -r requirements.txt
30
31
# Copy the rest of the app source code
32
COPY . ./
0 commit comments