From bf376734466c1ae35cc9efbf87d411687a740271 Mon Sep 17 00:00:00 2001 From: Felix Boerner Date: Fri, 5 Jan 2024 13:22:02 +0100 Subject: [PATCH] chore: improve Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef854d9..3050def 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.12-alpine LABEL maintainer="Felix Boerner " COPY requirements.txt /tmp/ -RUN pip install --requirement /tmp/requirements.txt +RUN pip install --no-cache-dir --requirement /tmp/requirements.txt COPY . /app/ WORKDIR /app