From 1456b04b3f6fef32193e9faf938675a249f97826 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 10:48:43 +0000 Subject: [PATCH] Bump node from 23-alpine to 24-alpine Bumps node from 23-alpine to 24-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 24-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..2767fb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the Nest.js application -FROM node:23-alpine AS builder +FROM node:24-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:24-alpine AS runner # Install pnpm again for the runtime stage RUN corepack enable && corepack prepare pnpm@latest --activate