vn-docker/certbot/Dockerfile

14 lines
304 B
Docker
Raw Normal View History

2023-09-22 20:37:39 +00:00
FROM debian:bookworm-slim
2020-02-06 09:51:28 +00:00
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
certbot \
python3-certbot-dns-rfc2136 \
cron \
2023-07-17 13:03:01 +00:00
curl \
2020-02-06 09:51:28 +00:00
&& rm -rf /var/lib/apt/lists/*
VOLUME ["/etc/letsencrypt"]
CMD ["cron", "-f"]