From 4e5af08bc1b77d073650e36c9798cc6bf00394b3 Mon Sep 17 00:00:00 2001 From: subodh Date: Thu, 12 Mar 2026 05:45:57 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f02c81d..3d59235 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ARG VITE_API_BASE_URL ENV VITE_API_BASE_URL=$VITE_API_BASE_URL RUN npm run build -# Stage 2: Serve with nginx (tiny ~50MB vs ~500MB) -FROM nginx:alpine AS production +# Stage 2: Serve with nginx +FROM mirror.gcr.io/library/nginx:alpine AS production COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80