Skip to content

Commit 7976a2d

Browse files
committed
update Dockerfile to use Node.js 24.0.0-slim for all stages
1 parent 5b57195 commit 7976a2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ci/nestjs-project/Dockerfile.prod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:23.0.0-slim AS ci
1+
FROM node:24.0.0-slim AS ci
22

33
ARG REPO_PATH=github.com/argentinaluiz/private-repo.git
44

@@ -27,7 +27,7 @@ COPY --chown=node:node . .
2727

2828
CMD [ "tail", "-f", "/dev/null" ]
2929

30-
FROM node:23.0.0-slim AS builder
30+
FROM node:24.0.0-slim AS builder
3131

3232
ENV NODE_ENV=production
3333

@@ -43,7 +43,7 @@ RUN npm run build
4343
RUN --mount=type=cache,target=/home/node/.npm,uid=1000,gid=1000,id=npm-cache \
4444
npm ci --only=production
4545

46-
FROM node:23.0.0-slim AS production
46+
FROM node:24.0.0-slim AS production
4747

4848
ENV NODE_ENV=production
4949

0 commit comments

Comments
 (0)