From ddfa152ab49ef82e0ea791429d06ccbdde65281a Mon Sep 17 00:00:00 2001 From: Johan Euphrosine Date: Mon, 8 Sep 2014 16:56:28 -0700 Subject: [PATCH 1/2] 2: add virtualenv --- 2/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2/Dockerfile b/2/Dockerfile index ca1d38d44..bde96e689 100644 --- a/2/Dockerfile +++ b/2/Dockerfile @@ -20,7 +20,7 @@ RUN ./configure \ && make install \ && make clean -# install "pip", since the vast majority of users of this image will want it -RUN curl -SL 'https://bootstrap.pypa.io/get-pip.py' | python2 +# install "pip" and "virtualenv", since the vast majority of users of this image will want it +RUN curl -SL 'https://bootstrap.pypa.io/get-pip.py' | python2 && pip install virtualenv CMD ["python2"] From 68fc87b42c688d4479933923049c11978289443c Mon Sep 17 00:00:00 2001 From: Johan Euphrosine Date: Mon, 15 Sep 2014 11:52:56 -0700 Subject: [PATCH 2/2] 2: split pip install virtualenv --- 2/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/2/Dockerfile b/2/Dockerfile index bde96e689..dd99d7727 100644 --- a/2/Dockerfile +++ b/2/Dockerfile @@ -21,6 +21,7 @@ RUN ./configure \ && make clean # install "pip" and "virtualenv", since the vast majority of users of this image will want it -RUN curl -SL 'https://bootstrap.pypa.io/get-pip.py' | python2 && pip install virtualenv +RUN curl -SL 'https://bootstrap.pypa.io/get-pip.py' | python2 +RUN pip install virtualenv CMD ["python2"]