소스 검색

Mise à jour de 'Dockerfile'

penta 4 일 전
부모
커밋
51ae855d93
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  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}