From cbf04f143959113cbc04535498438d4ec2e75568 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sat, 12 Jul 2025 21:42: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 2fe3ca2..2c3a5b6 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 # Copy the startup script COPY scripts/startup.sh /startup.sh