mirror of
https://github.com/immich-app/immich.git
synced 2024-12-22 01:47:08 +02:00
b713fb5650
* feat(docker) revert ubuntu base image This PR reverts the base image for immich-server back to alpine Adds LICENSE to all Images Quiets apt-get commands when building ensures write-permission for root group on app folders Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com> * Test build old Docker content * Revert and retry Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
8 lines
176 B
Docker
8 lines
176 B
Docker
FROM docker.io/nginxinc/nginx-unprivileged:latest
|
|
|
|
COPY LICENSE /licenses/LICENSE.txt
|
|
COPY LICENSE /LICENSE
|
|
|
|
COPY nginx.conf "/etc/nginx/nginx.conf"
|
|
|
|
CMD nginx -g "daemon off;" |