1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/python/python2/Dockerfile
2016-06-10 14:33:53 +08:00

14 lines
238 B
Docker

#
# Dockerfile for python2
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apk add -U curl python \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& rm -rf /var/cache/apk/*
CMD ["python"]