From 8f21ad6952591c760d6fbb3452dda753f29d4099 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sat, 7 Jan 2023 18:55:49 +0100 Subject: [PATCH] disable pip cache, probably smaller Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 942aeb4..f2f7913 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10 WORKDIR /app COPY . /app -RUN pip install -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt ENV PYTHONPATH=/app/src