Install python in base image

Change-Id: I0c96661a7f0e0eeef6d11eabb78aeeeed4da37fa
This commit is contained in:
Sergey Reshetnyak 2016-06-17 12:59:04 +03:00
parent 14d02165cf
commit 38a9669c6b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 08B73419AC
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends ca-certificates curl sudo openssl \
&& apt-get install -y --no-install-recommends ca-certificates curl sudo openssl python \
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
&& python get-pip.py \
&& rm get-pip.py \