Skip to content

Commit e991571

Browse files
committed
node update to 25.6.0
1 parent e74e404 commit e991571

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conanio/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install dependencies only when needed
2-
FROM node:24.5.0-alpine AS deps
2+
FROM node:25.6.0-alpine AS deps
33

44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
55
RUN apk add --no-cache libc6-compat
@@ -8,7 +8,7 @@ COPY package.json yarn.lock ./
88
RUN yarn install --frozen-lockfile
99

1010
# Rebuild the source code only when needed
11-
FROM node:24.5.0-alpine AS builder
11+
FROM node:25.6.0-alpine AS builder
1212

1313
ARG NEXT_PUBLIC_CONAN_VERSION
1414
ARG NEXT_PUBLIC_CONAN_CONANIO_SERVICE
@@ -23,7 +23,7 @@ RUN yarn test:ci
2323
RUN yarn build . NEXT_PUBLIC_CONAN_VERSION=${NEXT_PUBLIC_CONAN_VERSION} NEXT_PUBLIC_CONAN_CONANIO_SERVICE=${NEXT_PUBLIC_CONAN_CONANIO_SERVICE}
2424

2525
# Production image, copy all the files and run next
26-
FROM node:24.5.0-alpine AS runner
26+
FROM node:25.6.0-alpine AS runner
2727
WORKDIR /app
2828

2929
ENV NODE_ENV=production

0 commit comments

Comments
 (0)