1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-25 09:01:22 +02:00
immich/nginx/Dockerfile

12 lines
228 B
Docker
Raw Normal View History

FROM docker.io/nginxinc/nginx-unprivileged:latest
COPY LICENSE /licenses/LICENSE.txt
COPY LICENSE /LICENSE
COPY nginx.conf "/etc/nginx/nginx.conf.template"
COPY start.sh /start.sh
2022-12-29 16:47:25 +02:00
STOPSIGNAL SIGQUIT
2023-01-10 18:10:15 +02:00
ENTRYPOINT ["/start.sh"]