Added certbot container

This commit is contained in:
philtrep
2016-11-14 11:27:37 -05:00
parent 5e9ae56a7f
commit 4030cc2f26
6 changed files with 31 additions and 0 deletions
+8
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"