Use the nginx:alpine tagged version of the official nginx container as the

default. This is much smaller than the nginx container
This commit is contained in:
Robert Rennison 2016-08-13 17:02:41 -04:00
commit 9d8c7b56fe
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ CONF = {
'siteurl': '',
'lang': 'en',
'timezone': 'Europe/Paris',
'docker_base_image': 'nginx',
'docker_base_image': 'nginx:alpine',
'docker_target_dir': '/usr/share/nginx/html',
'docker_container_name': 'pelican_site_container'
}

View file

@ -1,2 +1,2 @@
FROM nginx
FROM nginx:alpine
COPY output /usr/share/nginx/html