fix(ci): use internal registry for node:20-alpine base image
- Change FROM node:20-alpine to FROM registry.nxtgauge.com/node:20-alpine - Update both Dockerfile and Dockerfile.simple - Fixes Docker Hub rate limiting errors in Woodpecker builds Images to mirror: - docker pull node:20-alpine - docker tag node:20-alpine registry.nxtgauge.com/node:20-alpine - docker push registry.nxtgauge.com/node:20-alpine
This commit is contained in:
parent
152f918a7b
commit
2d7117a47a
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ ENV NODE_OPTIONS="--max-old-space-size=4096"
|
|||
RUN npm run build
|
||||
|
||||
# Runtime stage
|
||||
FROM node:20-alpine
|
||||
FROM registry.nxtgauge.com/node:20-alpine
|
||||
WORKDIR /app
|
||||
|
||||
# Copy built output
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:20-alpine
|
||||
FROM registry.nxtgauge.com/node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue