fix: update Dockerfile to copy client build output from the correct directory

This commit is contained in:
2025-08-26 01:01:45 +02:00
parent 6eb5686d8b
commit 919915a31a

View File

@@ -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