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 d2d9664 commit 6f1c2b7Copy full SHA for 6f1c2b7
Dockerfile.qa
@@ -31,6 +31,13 @@ RUN if [ $PYTHON_VERSION = '3.7' ] ; then \
31
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 ; \
32
fi
33
34
+# install setuptools
35
+RUN if [ $PYTHON_VERSION = '2.7' ] ; then \
36
+ apt-get install python-setuptools
37
+ else \
38
+ apt-get install python3-setuptools
39
+ fi
40
+
41
# Register the version in alternatives
42
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python$PYTHON_VERSION 1
43
0 commit comments