Skip to content

Commit

Permalink
Remove setuptools from docker image (#1562)
Browse files Browse the repository at this point in the history
* remove setuptools from docker image

* Modify comment
  • Loading branch information
Tansito authored Jan 7, 2025
1 parent 7ca8508 commit 0f4a8de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile-ray-node
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ RUN mkdir /function_data && chown 1000:1000 /function_data
COPY client ./qs
WORKDIR /qs

# Need versions of pip/setuptools more recent than provided by UBI image
# Need versions of pip more recent than provided by UBI image
RUN python3.11 -m ensurepip --upgrade

RUN pip install --upgrade --no-cache-dir pip>=24.2 &&\
pip install --upgrade --no-cache-dir setuptools>=72.1.0
RUN pip install --upgrade --no-cache-dir pip>=24.2

RUN pip install -r requirements.txt --no-cache-dir &&\
pip install . --no-cache-dir &&\
Expand Down

0 comments on commit 0f4a8de

Please sign in to comment.