File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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.
55RUN apk add --no-cache libc6-compat
@@ -8,7 +8,7 @@ COPY package.json yarn.lock ./
88RUN 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
1313ARG NEXT_PUBLIC_CONAN_VERSION
1414ARG NEXT_PUBLIC_CONAN_CONANIO_SERVICE
@@ -23,7 +23,7 @@ RUN yarn test:ci
2323RUN 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
2727WORKDIR /app
2828
2929ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments