Files
gen-ssl-letsencrypt-cf/Dockerfile
2025-05-23 20:39:59 +05:00

12 lines
215 B
Docker

FROM debian:stable-slim
WORKDIR /etc/letsencrypt/live
RUN apt update \
&& apt install python3-certbot python3-certbot-dns-cloudflare -y
COPY gencert.sh /root/
RUN chmod +x /root/gencert.sh
CMD /root/gencert.sh