Added certbot container

This commit is contained in:
philtrep
2016-10-09 21:01:49 -04:00
parent 5e9ae56a7f
commit 4030cc2f26
6 changed files with 31 additions and 0 deletions

8
certbot/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM phusion/baseimage:latest
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"