We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74796d5 commit fb6a080Copy full SHA for fb6a080
1 file changed
Dockerfile
@@ -21,9 +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
26
# Install dependencies efficiently
-RUN pip install --no-cache-dir --upgrade pip==25.0.1 && \
27
+RUN pip install --no-cache-dir --require-hashes -r .github/requirements-pip.txt && \
28
pip install --no-cache-dir -r requirements.txt
29
30
# Copy the rest of the app source code
0 commit comments