mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
14 lines
238 B
Docker
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"]
|