1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/python/python3/Dockerfile

13 lines
215 B
Docker
Raw Normal View History

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