mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
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:
parent
7d07e228bf
commit
9d8c7b56fe
2 changed files with 2 additions and 2 deletions
|
|
@ -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'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
FROM nginx
|
||||
FROM nginx:alpine
|
||||
COPY output /usr/share/nginx/html
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue