From 138773997cf52f1c6b056ebd074f3d1097bb8e32 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 3 Aug 2022 21:54:56 +0100 Subject: [PATCH] Don't update pip twice --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e8df471..9ab9beb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,6 +52,6 @@ RUN curl -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin USER website COPY --chown=website requirements/dev.txt ./requirements/dev.txt -RUN pip install --upgrade pip && pip install -r requirements/dev.txt +RUN pip install -r requirements/dev.txt CMD sleep infinity