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

14 lines
238 B
Docker
Raw Normal View History

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