From 919bd8e93608df067cd8f932bb1fdfd045427c95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 00:53:47 +0000 Subject: [PATCH] build(deps): Bump node from 20-alpine to 25-alpine Bumps node from 20-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d11e299..eb9dcb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Optimized for production with minimal attack surface # Stage 1: Dependencies -FROM node:20-alpine AS dependencies +FROM node:25-alpine AS dependencies WORKDIR /app # Install build dependencies @@ -16,7 +16,7 @@ COPY .npmrc* ./ RUN npm ci --only=production # Stage 2: Build -FROM node:20-alpine AS build +FROM node:25-alpine AS build WORKDIR /app # Install build dependencies @@ -38,7 +38,7 @@ RUN npm run build RUN npm run test:unit # Stage 3: Production -FROM node:20-alpine AS production +FROM node:25-alpine AS production WORKDIR /app # Add non-root user