From 4832520b73aa3cdfd1c0ad5f5d7810184f749ccf Mon Sep 17 00:00:00 2001 From: Christopher Hase Date: Thu, 14 Aug 2025 14:16:28 +0200 Subject: [PATCH] feat(Dockerfile): add index.html --- Dockerfile | 6 +++++- index.html | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 index.html diff --git a/Dockerfile b/Dockerfile index 0071486..1f74906 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,5 @@ -FROM nginx \ No newline at end of file +FROM nginx + +RUN rm -rf /usr/share/nginx/html/* + +ADD index.html /usr/share/nginx/html/ \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..657e011 --- /dev/null +++ b/index.html @@ -0,0 +1,5 @@ + + +

YE-HAW

+ + \ No newline at end of file