From 3e441f8c5d94c8299cda3b2c20de2e1db5960353 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 11 Jul 2024 17:51:36 +0200 Subject: [PATCH] df --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b217dee..7ebafa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ COPY requirements.txt . # hadolint ignore=DL3008,DL3028 RUN apt-get update \ - && apt-get -y --no-install-recommends install wget \ -RUN python3 -m pip install -r requirements.txt \ + && apt-get -y --no-install-recommends install wget +RUN python3 -m pip install --no-cache-dir -r requirements.txt \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*