From d9b551d0ff2f066ac5943b347efe4d0d6299c974 Mon Sep 17 00:00:00 2001 From: mplorentz Date: Thu, 26 Feb 2026 11:07:41 -0500 Subject: [PATCH] Serve in SPA mode --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be48c09d..7602d311 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,4 +28,5 @@ WORKDIR /app # Copy only the built output - no source, no .env, no dev deps COPY --from=builder /app/build ./build -CMD ["npx", "serve", "build"] +# Serve in SPA mode +CMD ["npx", "serve", "-s", "build"]