diff --git a/2/Dockerfile b/2/Dockerfile index ca1d38d44..dd99d7727 100644 --- a/2/Dockerfile +++ b/2/Dockerfile @@ -20,7 +20,8 @@ RUN ./configure \ && make install \ && make clean -# install "pip", since the vast majority of users of this image will want it +# 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 +RUN pip install virtualenv CMD ["python2"]