Files
docker-debugging-disco/.infra/Dockerfile

10 lines
215 B
Docker

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