Files
gramps-web/Dockerfile.nginx
2024-01-19 18:14:33 +01:00

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;"]