From de4af0c6581fbe5c8d32663407285bd147db2ff4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 08:23:30 +0000 Subject: [PATCH] docker(deps): bump node in the docker-dependencies group Bumps the docker-dependencies group with 1 update: node. Updates `node` from 23-alpine to 24-alpine --- updated-dependencies: - dependency-name: node dependency-version: 24-alpine dependency-type: direct:production dependency-group: docker-dependencies ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e63b4fa..32a9e8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use Node.js 23 Alpine as the base image (upgraded from Node.js 20) -FROM node:23-alpine AS build +FROM node:24-alpine AS build # Set working directory WORKDIR /app @@ -31,7 +31,7 @@ RUN addgroup -g 1001 -S nodejs && \ adduser -S nodejs -u 1001 -G nodejs # Switch to production image for smaller footprint -FROM node:23-alpine AS production +FROM node:24-alpine AS production # Set working directory WORKDIR /app