Files
docker-debugging-disco/.infra/Dockerfile
2025-07-29 14:36:38 +01:00

8 lines
162 B
Docker

FROM nginx:1.29.0
COPY entrypoint.sh /custom-docker-entrypoint.sh
COPY index.html /usr/share/nginx/html/index.html
ENTRYPOINT ["/custom-docker-entrypoint.sh"]