From 919915a31a1fa3b79f49dc1c8043bb3bc49db20d Mon Sep 17 00:00:00 2001 From: Valentin Heiserer Date: Tue, 26 Aug 2025 01:01:45 +0200 Subject: [PATCH] fix: update Dockerfile to copy client build output from the correct directory --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index f9d573c..ef89a8c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -12,7 +12,7 @@ RUN npm run build # Use a lightweight nginx to serve the client build output FROM nginx:alpine AS runner -COPY --from=builder /app/.svelte-kit/output/client /usr/share/nginx/html +COPY --from=builder /app/.svelte-kit/output/server /usr/share/nginx/html COPY --from=builder /app/static /usr/share/nginx/html # Default nginx port