add python3

This commit is contained in:
2016-06-04 03:57:39 +02:00
parent e49776862e
commit 886211f908
2 changed files with 15 additions and 0 deletions

13
Dockerfile_python3 Normal file
View File

@ -0,0 +1,13 @@
FROM hosttoday/ht-docker-node:latest
RUN apt-get update \
&& apt-get install -y -q --no-install-recommends \
python3 \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*
# Install pip and symlink python to python3
RUN curl -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py \
&& rm get-pip.py \
&& rm -r /usr/bin/python \
&& ln -s /usr/bin/python3 /usr/bin/python