12 lines
215 B
Docker
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
|