mirror of
https://github.com/gramps-project/gramps-web.git
synced 2026-01-04 12:49:38 -06:00
6 lines
214 B
Nginx Configuration File
6 lines
214 B
Nginx Configuration File
FROM nginx
|
|
COPY dist /usr/share/nginx/html
|
|
COPY ./default.conf.template /etc/nginx/templates/
|
|
LABEL org.opencontainers.image.source="https://github.com/gramps-project/gramps-web"
|
|
CMD ["nginx", "-g", "daemon off;"]
|