nginx/Dockerfile

31 lines
992 B
Docker
Raw Normal View History

2016-08-22 02:11:35 +00:00
# NAME leenooks/nginx
# VERSION latest
2018-01-29 11:02:41 +00:00
FROM nginx:latest
COPY etc/nginx/default.d /etc/nginx/default.d
2022-04-01 13:54:34 +00:00
COPY etc/nginx/nginx.conf /etc/nginx
2018-01-29 11:02:41 +00:00
COPY var/www/maintenance /var/www/maintenance
RUN chmod 444 /etc/nginx/default.d/ssl/* && chmod 400 /etc/nginx/default.d/ssl/default.key /etc/nginx/default.d/ssl/dhparams.pem
2016-08-22 02:11:35 +00:00
2019-05-16 03:17:16 +00:00
RUN apt-get update && apt-get install certbot -yy \
2018-01-29 11:02:41 +00:00
&& rm -rf /var/lib/apt/lists/* /tmp/*
2016-08-22 02:11:35 +00:00
2019-05-16 05:10:04 +00:00
# Add Cloudflare Certbot
2020-12-07 00:43:03 +00:00
RUN apt-get update && apt-get install python3-certbot-dns-cloudflare -yy \
2019-05-16 05:10:04 +00:00
&& rm -rf /var/lib/apt/lists/* /tmp/*
2020-12-07 00:43:03 +00:00
# Add acme-lego Certbot
RUN curl -sL https://github.com/go-acme/lego/releases/download/v4.2.0/lego_v4.2.0_linux_amd64.tar.gz | tar -C /usr/local/sbin -xzf -
2020-12-07 00:43:03 +00:00
2016-08-22 02:11:35 +00:00
EXPOSE 80 443
2021-02-12 01:19:34 +00:00
COPY ssl.sh /usr/local/sbin/
LABEL cron.container.weekly root#/usr/local/sbin/ssl.sh lego renew
2016-08-22 02:11:35 +00:00
# Expose our web root and log directories log.
#VOLUME [ "/etc/nginx/conf.d", "/etc/nginx/default.d" ]
# Starting
ENTRYPOINT [ "/usr/sbin/nginx" ]
CMD [ "-g daemon off;" ]