mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:18 +02:00
13 lines
224 B
Docker
13 lines
224 B
Docker
#
|
|
# Dockerfile for python3
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.info>
|
|
|
|
RUN apk add -U curl python3 \
|
|
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
CMD ["python3"]
|