Skip to content

Commit d77d203

Browse files
author
Janne Karjalainen
committed
Upgrade setuptools in dockerfile
1 parent d8166dd commit d77d203

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dockerize/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
2020
# Supposedly helps with pip time-outs.
2121
ENV PIP_DEFAULT_TIMEOUT=100
2222

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

2728
ENV LANG=en_US.UTF-8
2829
ENV DB_NAME="b2share-evolution"

0 commit comments

Comments
 (0)