Pārlūkot izejas kodu

Upgade pip to latest

Hopefully fixes our builds.

Signed-off-by: Daniel Nephin <[email protected]>
Daniel Nephin 9 gadi atpakaļ
vecāks
revīzija
26fe8213aa
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 3 3
      Dockerfile

+ 3 - 3
Dockerfile

@@ -49,11 +49,11 @@ RUN set -ex; \
 
 
 # Install pip
 # Install pip
 RUN set -ex; \
 RUN set -ex; \
-    curl -L https://pypi.python.org/packages/source/p/pip/pip-7.0.1.tar.gz | tar -xz; \
-    cd pip-7.0.1; \
+    curl -L https://pypi.python.org/packages/source/p/pip/pip-8.1.1.tar.gz | tar -xz; \
+    cd pip-8.1.1; \
     python setup.py install; \
     python setup.py install; \
     cd ..; \
     cd ..; \
-    rm -rf pip-7.0.1
+    rm -rf pip-8.1.1
 
 
 # Python3 requires a valid locale
 # Python3 requires a valid locale
 RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
 RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen