Use the latest version of pip

This commit is contained in:
Michael Steinert
2015-11-12 16:17:15 -06:00
parent 128a5beca4
commit 0abc8efc0a
+9 -1
View File
@@ -1,4 +1,12 @@
FROM alpine:3.2
RUN apk add -U ca-certificates python py-pip && rm -rf /var/cache/apk/*
RUN apk add -U \
ca-certificates \
py-pip \
python \
&& rm -rf /var/cache/apk/* \
&& pip install --no-cache-dir --upgrade pip
ADD drone-pypi /bin/
ENTRYPOINT ["/bin/drone-pypi"]