From 521f611fcd85637d969b2bd3fea189a0ec1627d8 Mon Sep 17 00:00:00 2001 From: kev Date: Fri, 10 Jun 2016 14:33:53 +0800 Subject: [PATCH] update python --- python/python2/Dockerfile | 3 ++- python/python3/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python/python2/Dockerfile b/python/python2/Dockerfile index 8f5cc0a..54d792f 100644 --- a/python/python2/Dockerfile +++ b/python/python2/Dockerfile @@ -5,7 +5,8 @@ FROM alpine MAINTAINER kev -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/* diff --git a/python/python3/Dockerfile b/python/python3/Dockerfile index 1a11f6e..d8b7d3d 100644 --- a/python/python3/Dockerfile +++ b/python/python3/Dockerfile @@ -5,7 +5,8 @@ FROM alpine MAINTAINER kev -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/*