We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8166dd commit d77d203Copy full SHA for d77d203
dockerize/Dockerfile
@@ -20,9 +20,10 @@ RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
20
# Supposedly helps with pip time-outs.
21
ENV PIP_DEFAULT_TIMEOUT=100
22
23
-RUN python3 -m pip install --upgrade pip setuptools wheel && \
24
- python3 --version && \
25
- 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 && \
26
+ pip3 --version
27
28
ENV LANG=en_US.UTF-8
29
ENV DB_NAME="b2share-evolution"
0 commit comments