Skip to content

Commit

Permalink
Upgrade setuptools in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Janne Karjalainen committed Oct 6, 2021
1 parent d8166dd commit d77d203
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dockerize/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
# Supposedly helps with pip time-outs.
ENV PIP_DEFAULT_TIMEOUT=100

RUN python3 -m pip install --upgrade pip setuptools wheel && \
python3 --version && \
pip3 --version
# setuptools pinned for 2to3 compatibility (for e.g. fs==0.5.4)
RUN python3 -m pip install --upgrade pip setuptools==57.5.0 wheel && \
python3 --version && \
pip3 --version

ENV LANG=en_US.UTF-8
ENV DB_NAME="b2share-evolution"
Expand Down

0 comments on commit d77d203

Please sign in to comment.