From da058d92dc0ede26b48023d05dac08815e7e31bb Mon Sep 17 00:00:00 2001 From: jknapp Date: Sat, 12 Jul 2025 21:44:24 -0700 Subject: [PATCH] Remove the default index.html --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c3a5b6..1ca987b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM httpd:alpine # Copy the default landing page to the container COPY index.html /index.html -RUN rm /usr/local/apache2/htdocs/index.html +RUN rm -f /usr/local/apache2/htdocs/index.html # Copy the startup script COPY scripts/startup.sh /startup.sh