From 78ab043bd98ed2a3e4df7fd1b553ce4dbbbf5f82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 03:59:35 +0000 Subject: [PATCH] build(deps): bump node from 24-alpine to 26-alpine in /frontend Bumps node from 24-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- frontend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index a7d1c96..23ab859 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,13 +2,13 @@ # Multi-stage build for the Next.js BFF using the standalone output. # --- Dependencies ---------------------------------------------------------- -FROM node:24-alpine AS deps +FROM node:26-alpine AS deps WORKDIR /app COPY package.json package-lock.json ./ RUN npm ci # --- Build ----------------------------------------------------------------- -FROM node:24-alpine AS build +FROM node:26-alpine AS build WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . @@ -21,7 +21,7 @@ ENV NEXT_PUBLIC_OIDC_AUTHORITY=$NEXT_PUBLIC_OIDC_AUTHORITY RUN npm run build # --- Runtime --------------------------------------------------------------- -FROM node:24-alpine AS final +FROM node:26-alpine AS final WORKDIR /app ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1