From c3e0c9378f3529763f6433d3ed5282a84cf6d687 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 13 Oct 2021 00:52:48 +1100 Subject: [PATCH] Upgrade pip as part of dockerfile --- docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index dd78d6234d..959d333d52 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -75,6 +75,9 @@ RUN apk add --no-cache git make bash \ # Required for python cryptography support openssl-dev musl-dev libffi-dev rust cargo +# Update pip +RUN pip install --upgrade pip + # Install required base-level python packages COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -U -r requirements.txt @@ -133,4 +136,3 @@ ENTRYPOINT ["/bin/bash", "./docker/init.sh"] # Launch the development server CMD ["invoke", "server", "-a", "${INVENTREE_WEB_ADDR}:${INVENTREE_WEB_PORT}"] -