Quellcode durchsuchen

Mise à jour de 'Dockerfile'

penta vor 4 Tagen
Ursprung
Commit
51ae855d93
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. 3 0
      Dockerfile

+ 3 - 0
Dockerfile

@@ -537,10 +537,13 @@ RUN update-alternatives --set x-www-browser /usr/bin/firefox \
 COPY --chown=${USER_UID}:${USER_GID} entrypoint.sh /etc/entrypoint.sh
 COPY --chown=${USER_UID}:${USER_GID} selkies-entrypoint.sh /etc/selkies-entrypoint.sh
 COPY --chown=${USER_UID}:${USER_GID} supervisord.conf /etc/supervisord.conf
+COPY --chown=${USER_UID}:${USER_GID} nginx.conf /etc/nginx/nginx.conf
+COPY --chown=${USER_UID}:${USER_GID} nginx-entrypoint.sh /etc/nginx-entrypoint.sh
 
 RUN chmod 0755 \
         /etc/entrypoint.sh \
         /etc/selkies-entrypoint.sh \
+        /etc/nginx-entrypoint.sh \
         /etc/supervisord.conf
 
 USER ${USER_UID}:${USER_GID}