Files
opensem/docker/certbot/Dockerfile
Ludovic CANDELLIER 930695166d add certbot
2024-01-22 23:05:39 +01:00

11 lines
300 B
Docker
Executable File

FROM phusion/baseimage:bionic-1.0.0
LABEL maintainer="Ludovic CANDELLIER <ludovic.candellier@fundglobam.com>"
COPY run-certbot.sh /root/certbot/run-certbot.sh
RUN apt-get update
RUN apt-get install -y letsencrypt
ENTRYPOINT bash -c "bash /root/certbot/run-certbot.sh && sleep infinity"