2017-01-23 06:33:45 +00:00
|
|
|
FROM nginx
|
2017-01-20 01:42:04 +00:00
|
|
|
MAINTAINER Elliot Saba <staticfloat@gmail.com>
|
2015-11-22 19:17:01 +00:00
|
|
|
|
2016-11-19 21:22:07 +00:00
|
|
|
VOLUME /etc/letsencrypt
|
2016-09-21 12:22:55 +00:00
|
|
|
EXPOSE 80
|
2017-01-23 06:33:45 +00:00
|
|
|
EXPOSE 443
|
2015-11-22 19:17:01 +00:00
|
|
|
|
2017-01-23 06:33:45 +00:00
|
|
|
RUN apt update && apt install -y cron python python-dev python-pip libffi-dev libssl-dev
|
|
|
|
RUN pip install -U cffi certbot
|
2015-11-22 19:17:01 +00:00
|
|
|
|
2017-01-23 06:33:45 +00:00
|
|
|
# Copy in cron job and scripts for certbot
|
2017-01-20 01:42:04 +00:00
|
|
|
COPY ./crontab /etc/cron.d/certbot
|
2017-01-01 20:58:42 +00:00
|
|
|
RUN crontab /etc/cron.d/certbot
|
2016-09-21 01:12:59 +00:00
|
|
|
COPY ./scripts/ /scripts
|
2017-01-20 02:17:56 +00:00
|
|
|
RUN chmod +x /scripts/*.sh
|
2016-09-21 01:12:59 +00:00
|
|
|
|
2017-01-23 06:58:30 +00:00
|
|
|
# Copy in default nginx configuration (which just forwards ACME requests to
|
|
|
|
# certbot, or redirects to HTTPS, but has no HTTPS configurations by default).
|
2017-01-23 06:33:45 +00:00
|
|
|
RUN rm -f /etc/nginx/conf.d/*
|
|
|
|
COPY nginx_conf.d/ /etc/nginx/conf.d/
|
|
|
|
|
2016-09-21 01:12:59 +00:00
|
|
|
ENTRYPOINT []
|
2017-01-02 05:34:59 +00:00
|
|
|
CMD ["/bin/bash", "/scripts/entrypoint.sh"]
|