Skip to content

Commit ed515e9

Browse files
committed
update Dockerfile to use Node.js 24.9.0-slim for builder and production stages
1 parent 817f8aa commit ed515e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ci/nestjs-project/Dockerfile.prod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ COPY --chown=node:node . .
2727

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

30-
FROM node:24.0.0-slim AS builder
30+
FROM node:24.9.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:24.0.0-slim AS production
46+
FROM node:24.9.0-slim AS production
4747

4848
ENV NODE_ENV=production
4949

0 commit comments

Comments
 (0)