File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ RUN set -ex \
146
146
# "ValueError: invalid truth value '<VERSION>'"
147
147
ENV PYTHON_PIP_VERSION 21.3.1
148
148
RUN wget --no-check-certificate -O /tmp/get-pip-3-7.py 'https://bootstrap.pypa.io/pip/3.7/get-pip.py' \
149
+ && wget --no-check-certificate -O /tmp/get-pip-3-8.py 'https://bootstrap.pypa.io/pip/3.8/get-pip.py' \
149
150
&& wget --no-check-certificate -O /tmp/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' \
150
151
&& python3.10 /tmp/get-pip.py "pip==$PYTHON_PIP_VERSION" \
151
152
# we use "--force-reinstall" for the case where the version of pip we're trying to install is the same as the version bundled with Python
@@ -161,7 +162,7 @@ RUN python3.13 /tmp/get-pip.py
161
162
RUN python3.12 /tmp/get-pip.py
162
163
RUN python3.11 /tmp/get-pip.py
163
164
RUN python3.9 /tmp/get-pip.py
164
- RUN python3.8 /tmp/get-pip.py
165
+ RUN python3.8 /tmp/get-pip-3-8 .py
165
166
RUN python3.7 /tmp/get-pip-3-7.py
166
167
RUN rm /tmp/get-pip.py
167
168
You can’t perform that action at this time.
0 commit comments