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.
2 parents 7d596e8 + e2f46ba commit 143e120Copy full SHA for 143e120
Dockerfile
@@ -14,9 +14,9 @@ RUN apt-get update && \
14
# Copy only the requirements.in and .env.local files into the container
15
COPY requirements.in /app/
16
17
-# Install pip-tools
18
-RUN pip install --upgrade pip && \
19
- pip install pip-tools
+# Install pip-tools with compatible pip version
+RUN pip install --upgrade "pip<25" && \
+ pip install "pip-tools==7.5.1"
20
21
# Compile requirements.in to requirements.txt and install pip requirements
22
RUN pip-compile requirements.in && \
0 commit comments