fix(docker): Use mirror.gcr.io in all Dockerfiles to avoid rate limits
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Kelly
2025-12-15 18:19:18 -07:00
parent 358099c58a
commit f38f1024de
4 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM node:20-slim AS builder
FROM mirror.gcr.io/library/node:22-slim AS builder
WORKDIR /app
@@ -25,7 +25,7 @@ COPY . .
RUN npm run build
# Production stage
FROM nginx:alpine
FROM mirror.gcr.io/library/nginx:alpine
# Copy built assets from builder stage (CRA outputs to /build)
COPY --from=builder /app/build /usr/share/nginx/html