From 8d913f9324bb52ec7952cfbdd454324f47745b1c Mon Sep 17 00:00:00 2001 From: Adib Pratama Date: Wed, 20 Sep 2023 21:12:56 +0700 Subject: [PATCH] Remove no-cache-dir --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40e89bb..5d6365f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apt update RUN apt install -y zip RUN mkdir -p ./python RUN pwd -RUN pip install --no-cache-dir -r requirements.txt -t python/ +RUN pip install -r requirements.txt -t python/ RUN zip -r python.zip python # ENTRYPOINT ["tail", "-f", "/dev/null"]