Add runtime stage to Dockerfile for nginx

This commit is contained in:
2026-01-17 16:25:06 +00:00
committed by GitHub
parent 2ad2b77d7f
commit ead06ea1fb

View File

@@ -24,6 +24,7 @@ COPY . .
# Build the application
RUN npm run build
FROM nginx:alpine AS runtime
COPY --from=builder /app/dist /usr/share/nginx/html