From a9f809cab5f65e28af39e2e99a3ee0834121b464 Mon Sep 17 00:00:00 2001 From: askiiart Date: Tue, 14 Nov 2023 09:05:11 -0600 Subject: [PATCH] No cache for Dockerfile installs --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0587c0c..bbaa192 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.12-alpine WORKDIR /etc/nginx -RUN pip install certbot certbot-nginx -RUN apk add nginx +RUN pip install certbot certbot-nginx --no-cache-dir +RUN apk add nginx --no-cache COPY run.sh /root CMD ["/root/run.sh"] \ No newline at end of file