docker-certbot-nginx/Dockerfile

5 lines
152 B
Docker
Raw Normal View History

FROM python:3.12-alpine
2023-11-14 09:05:11 -06:00
RUN pip install certbot certbot-nginx --no-cache-dir
RUN apk add nginx --no-cache
2023-11-14 13:25:43 -06:00
ADD run.sh /root/run.sh
CMD [ "/root/run.sh" ]