Merge pull request #200 from cgeoffroy/pr/pip_docker_quick_fix
authorpeusterm <manuel.peuster@uni-paderborn.de>
Fri, 3 Mar 2017 13:44:22 +0000 (14:44 +0100)
committerpeusterm <manuel.peuster@uni-paderborn.de>
Fri, 3 Mar 2017 13:44:22 +0000 (14:44 +0100)
FIX: install the latest pip

utils/docker/Dockerfile

index eac132c..238ed44 100755 (executable)
@@ -35,7 +35,9 @@ RUN apt-get update \
 
 
 # install containernet
-RUN apt-get install -y curl python-pip 
+RUN apt-get install -y curl && \
+    curl https://bootstrap.pypa.io/get-pip.py | python2
+
 # install docker
 RUN curl -fsSL https://get.docker.com/gpg | apt-key add -
 RUN curl -fsSL https://get.docker.com/ | sh