Skip to content

Commit 4ea707c

Browse files
committed
Work on requirements pip errors in docker file
Work on requirements pip errors in docker file
1 parent 88de741 commit 4ea707c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ RUN curl -L "https://github.com/docker/compose/releases/download/v2.20.0/docker-
4343
chmod +x /usr/local/bin/docker-compose
4444

4545
# Upgrade pip, setuptools, and wheel
46-
RUN pip3 install --upgrade pip setuptools wheel --break-system-packages
46+
RUN pip3 install --upgrade pip setuptools wheel
4747

4848
# Install Python packages from requirements.txt
49-
RUN pip3 install -r requirements.txt --no-cache-dir --verbose --break-system-packages
49+
RUN pip3 install --use-deprecated=legacy-resolver -r requirements.txt
5050

5151
# Install SASS via gem
5252
RUN gem install sass --verbose

0 commit comments

Comments
 (0)