feat(ci): Use local registry 10.100.9.70:5000 for base images
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Kelly
2025-12-15 18:28:20 -07:00
parent 74f813d68f
commit 7cf1b7643f
5 changed files with 14 additions and 14 deletions

View File

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