Skip to content

Commit 143e120

Browse files
authored
Merge pull request #5 from mebverse/patch-1
Update pip-tools installation in Dockerfile
2 parents 7d596e8 + e2f46ba commit 143e120

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ RUN apt-get update && \
1414
# Copy only the requirements.in and .env.local files into the container
1515
COPY requirements.in /app/
1616

17-
# Install pip-tools
18-
RUN pip install --upgrade pip && \
19-
pip install pip-tools
17+
# Install pip-tools with compatible pip version
18+
RUN pip install --upgrade "pip<25" && \
19+
pip install "pip-tools==7.5.1"
2020

2121
# Compile requirements.in to requirements.txt and install pip requirements
2222
RUN pip-compile requirements.in && \

0 commit comments

Comments
 (0)