No cache for Dockerfile installs

This commit is contained in:
askiiart 2023-11-14 09:05:11 -06:00
parent fe2d0cac3f
commit a9f809cab5
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67

View file

@ -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"]