From 272ce31597d480575b02b79fa8a6a324616f3072 Mon Sep 17 00:00:00 2001 From: Abhi <85984486+AbhiTheModder@users.noreply.github.com> Date: Fri, 9 Aug 2024 01:27:53 +0530 Subject: [PATCH] Avoid use of cache directory with pip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1419cc3..1d3557d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ COPY . /app RUN apt-get -qq update && apt-get -qq install -y git wget ffmpeg mediainfo \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -RUN pip install -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt CMD ["python", "main.py"]