Files
360_player/docker/nginx/Dockerfile
T

11 lines
251 B
Docker
Raw Normal View History

FROM nginx:1.27-alpine
# inotify-tools:憑證續期後自動重載 nginx,不用手動重啟容器。
RUN apk add --no-cache inotify-tools
COPY docker/nginx/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]