From b8e41288d9ebfda21fe6d4720ecf75492ab19f44 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 26 Feb 2025 21:28:28 +0000 Subject: [PATCH] update serve target to /sitix to appease httpd it's pretty cool how I can do this from my phone --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8d9490..08f6859 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,15 +10,14 @@ RUN ls site ARG SITIX_ENVIRONMENT="production" -RUN /sitix site -y -c ${SITIX_ENVIRONMENT} - +RUN /sitix site -y -o sitix -c ${SITIX_ENVIRONMENT} FROM busybox:1.35 # Copy the static website COPY --from=build /output /output -WORKDIR output +WORKDIR / # Run BusyBox httpd CMD ["busybox", "httpd", "-f", "-v", "-p", "80"]