2017-03-17 08:36:00 +01:00
|
|
|
FROM phusion/baseimage:latest
|
|
|
|
|
2018-03-16 10:34:47 +01:00
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
2017-03-26 09:56:55 +02:00
|
|
|
|
2017-03-17 08:36:00 +01:00
|
|
|
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"
|