From ead06ea1fb0aade98fa3daf7cf8cde333584066c Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sat, 17 Jan 2026 16:25:06 +0000 Subject: [PATCH] Add runtime stage to Dockerfile for nginx --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c9f5e01..9196097 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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