Skip to content

Commit

Permalink
chore: update setuptools in docker images
Browse files Browse the repository at this point in the history
Signed-off-by: ThibaultFy <[email protected]>
  • Loading branch information
ThibaultFy committed Oct 1, 2024
1 parent 02636a7 commit b7355b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions substrafl/remote/register/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
FROM python:{python_version}-slim
# update image
RUN apt-get update -y
RUN apt-get update -y && pip uninstall -y setuptools
"""

_GPU_BASE_IMAGE = """
Expand Down Expand Up @@ -62,7 +62,7 @@
ENV PATH="/home/user/venv/bin:$PATH" VIRTUAL_ENV="/home/user/venv"
# install dependencies
RUN python{python_version} -m pip install -U pip
RUN python{python_version} -m pip install -U pip && pip install -U setuptools>=70.0.0
# Copy local wheels
{copy_wheels}
Expand Down

0 comments on commit b7355b9

Please sign in to comment.