Skip to content

Commit

Permalink
fix(docker): remove pip upgrade from Dockerfile installation commands
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Nov 25, 2024
1 parent 7895852 commit e526d30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN pip install setuptools==68.2.2
RUN pip install wheel==0.41.3
RUN pip install build==1.0.0

RUN pip install --upgrade pip && pip install -r requirements.txt
RUN pip install -r requirements.txt

# RUN pip install --use-deprecated=legacy-resolver -r requirements.txt
COPY docker/ramp/solaris /tmp/solaris
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile_CPU
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN pip install setuptools==68.2.2
RUN pip install wheel==0.41.3
RUN pip install build==1.0.0

RUN pip install --upgrade pip && pip install -r requirements.txt
RUN pip install -r requirements.txt

# RUN pip install --use-deprecated=legacy-resolver -r requirements.txt

Expand Down

0 comments on commit e526d30

Please sign in to comment.