We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c8f7b2 commit 53331c9Copy full SHA for 53331c9
1 file changed
python/googleapis/python-multi/Dockerfile
@@ -163,10 +163,13 @@ RUN wget --no-check-certificate -O /tmp/get-pip.py 'https://bootstrap.pypa.io/ge
163
# https://github.com/docker-library/python/pull/100
164
&& [ "$(pip list |tac|tac| awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ]
165
166
-# Ensure Pip for 3.9
167
-RUN python3.9 /tmp/get-pip.py
+# Ensure Pip for 3.10
+RUN python3.10 /tmp/get-pip.py
168
RUN rm /tmp/get-pip.py
169
170
+# Test Pip
171
+RUN python3 -m pip
172
+
173
# Install "virtualenv", since the vast majority of users of this image
174
# will want it.
175
RUN pip install --no-cache-dir virtualenv
0 commit comments