Merge pull request #1530 from ahkui/patch-1

Update Dockerfile install python pip, virtualenv way.
This commit is contained in:
Shao Yu-Lung (Allen) 2018-05-29 14:01:50 +08:00 committed by GitHub
commit 42a960338b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -666,8 +666,8 @@ ARG INSTALL_PYTHON=false
RUN if [ ${INSTALL_PYTHON} = true ]; then \
apt-get -y install python python-pip python-dev build-essential \
&& pip install --upgrade pip \
&& pip install --upgrade virtualenv \
&& python -m pip install --upgrade pip \
&& python -m pip install --upgrade virtualenv \
;fi
###########################################################################