34 lines
1.1 KiB
Docker
34 lines
1.1 KiB
Docker
FROM nginx
|
|
MAINTAINER Elliot Saba <staticfloat@gmail.com>
|
|
|
|
VOLUME /etc/letsencrypt
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
|
|
# Do this apt/pip stuff all in one RUN command to avoid creating large
|
|
# intermediate layers on non-squashable docker installs
|
|
RUN apt update && \
|
|
apt install -y cron python python-dev libffi6 libffi-dev libssl-dev curl build-essential && \
|
|
curl -L 'https://bootstrap.pypa.io/get-pip.py' | python && \
|
|
pip install -U cffi certbot && \
|
|
apt remove --purge -y python-dev build-essential libffi-dev libssl-dev curl && \
|
|
apt-get autoremove -y && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy in cron job and scripts for certbot
|
|
COPY ./crontab /etc/cron.d/certbot
|
|
COPY ./scripts/ /scripts
|
|
RUN chmod +x /scripts/*.sh
|
|
|
|
# Add /scripts/startup directory to source more startup scripts
|
|
RUN mkdir -p /scripts/startup
|
|
|
|
# Copy in default nginx configuration (which just forwards ACME requests to
|
|
# certbot, or redirects to HTTPS, but has no HTTPS configurations by default).
|
|
RUN rm -f /etc/nginx/conf.d/*
|
|
COPY nginx_conf.d/ /etc/nginx/conf.d/
|
|
|
|
ENTRYPOINT []
|
|
CMD ["/bin/bash", "/scripts/entrypoint.sh"]
|