From ec63ec8760b543440657dd1d908334ad6cce39b0 Mon Sep 17 00:00:00 2001 From: jkuettner Date: Thu, 13 Dec 2018 20:26:06 +0100 Subject: [PATCH] Fix dockerfile with pip upgrade --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 77cc394..c4bdf1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ RUN apk add --no-cache \ libffi-dev \ ca-certificates \ openssl +# update pip +RUN pip3 install --upgrade pip # Install Radicale RUN wget --quiet https://github.com/Kozea/Radicale/archive/${VERSION}.tar.gz --output-document=radicale.tar.gz && \ tar xzf radicale.tar.gz && \