mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 20:28:01 +03:00
10 lines
279 B
Docker
10 lines
279 B
Docker
FROM nginx:latest
|
|
ADD nginx.conf /etc/nginx/nginx.conf
|
|
|
|
{% if cookiecutter.use_certbot == 'y' and cookiecutter.use_docker == 'y' %}
|
|
ADD start.sh /start.sh
|
|
ADD nginx-secure.conf /etc/nginx/nginx-secure.conf
|
|
ADD dhparams.pem /etc/ssl/private/dhparams.pem
|
|
ADD /start.sh
|
|
{% endif %}
|