diff --git a/2/Dockerfile b/2/Dockerfile index 065406f18..ce0870cb5 100644 --- a/2/Dockerfile +++ b/2/Dockerfile @@ -17,4 +17,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 + CMD ["python2"]