1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/python/python3/Dockerfile

13 lines
215 B
Docker
Raw Normal View History

2015-08-07 09:11:31 +00:00
#
# Dockerfile for python3
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-08-07 09:11:31 +00:00
2016-06-10 06:33:53 +00:00
RUN set -xe \
2016-10-31 03:28:34 +00:00
&& apk add --no-cache curl python3 \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3
2015-08-07 09:11:31 +00:00
CMD ["python3"]