From 6ade8459116161785e4e412d8d87cd2c37e7cca0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 11:20:01 +0000 Subject: [PATCH] Bump node from 23-alpine to 25-alpine Bumps node from 23-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5116d54..57d821f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the Nest.js application -FROM node:23-alpine AS builder +FROM node:25-alpine AS builder # Install pnpm RUN corepack enable && corepack prepare pnpm@latest --activate @@ -20,7 +20,7 @@ COPY . . RUN pnpm build # Stage 2: Run the application with a minimal image -FROM node:23-alpine AS runner +FROM node:25-alpine AS runner # Install pnpm again for the runtime stage RUN corepack enable && corepack prepare pnpm@latest --activate