Add .infra for image-building

This commit is contained in:
3wc
2025-07-29 14:36:38 +01:00
parent d6b025c7bd
commit af6942a2c9
3 changed files with 20 additions and 0 deletions

7
.infra/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
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"]