feat(Dockerfile): add index.html

This commit is contained in:
Christopher Hase 2025-08-14 14:16:28 +02:00
parent ade331b1b2
commit 4832520b73
2 changed files with 10 additions and 1 deletions

View file

@ -1 +1,5 @@
FROM nginx
FROM nginx
RUN rm -rf /usr/share/nginx/html/*
ADD index.html /usr/share/nginx/html/

5
index.html Normal file
View file

@ -0,0 +1,5 @@
<html>
<body>
<h1>YE-HAW</h1>
</body>
</html>