Files
badminton-scoreboard/docker/nginx/Dockerfile

10 lines
169 B
Docker
Raw Normal View History

FROM nginx:1.27-alpine
RUN apk add --no-cache inotify-tools
COPY docker/nginx/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]