1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00

14 lines
238 B
Docker
Raw Normal View History

2015-08-07 17:11:31 +08:00
#
# Dockerfile for python2
#
FROM alpine
2016-05-01 09:06:20 +08:00
MAINTAINER kev <noreply@easypi.info>
2015-08-07 17:11:31 +08:00
2016-06-10 14:33:53 +08:00
RUN set -xe \
&& apk add -U curl python \
2015-08-07 17:11:31 +08:00
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& rm -rf /var/cache/apk/*
CMD ["python"]