This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/certbot/Dockerfile

18 lines
352 B
Docker
Raw Normal View History

2018-12-11 20:34:04 +00:00
FROM debian:stable-slim
2017-09-17 01:49:55 +01:00
2018-12-11 20:34:04 +00:00
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install \
certbot \
cron \
supervisor
2017-09-17 01:49:55 +01:00
ADD certbot.cron /etc/cron.d/certbot
VOLUME ["/etc/letsencrypt"]
COPY supervisord.conf /etc/supervisord.conf
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]