1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/python/python2/Dockerfile

13 lines
212 B
Docker
Raw Normal View History

2015-08-07 09:11:31 +00:00
#
# Dockerfile for python2
#
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 python \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python
2015-08-07 09:11:31 +00:00
CMD ["python"]