1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

update python

This commit is contained in:
kev 2016-06-10 14:33:53 +08:00
parent a0146cd9e6
commit 521f611fcd
2 changed files with 4 additions and 2 deletions

@ -5,7 +5,8 @@
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add -U curl python \
RUN set -xe \
&& apk add -U curl python \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& rm -rf /var/cache/apk/*

@ -5,7 +5,8 @@
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add -U curl python3 \
RUN set -xe \
&& apk add -U curl python3 \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
&& rm -rf /var/cache/apk/*