From f627c3d75626973c218db917a7d5a1b6530fe87a Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Wed, 6 Apr 2022 18:22:05 +0200 Subject: [PATCH] Further slim docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 146b6c1757..43d0bf0b36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN python -m venv /opt/venv ENV PATH="/opt/venv/bin:$PATH" COPY . /build -RUN pip install /build/ +RUN pip --no-cache-dir install /build/ FROM base COPY --from=builder /opt/venv /opt/venv