docker-certbot-nginx/Dockerfile
2023-11-14 09:05:11 -06:00

6 lines
163 B
Docker

FROM python:3.12-alpine
WORKDIR /etc/nginx
RUN pip install certbot certbot-nginx --no-cache-dir
RUN apk add nginx --no-cache
COPY run.sh /root
CMD ["/root/run.sh"]