From 55db3461d81c58c9e3920987ddba1bd9e3dbaeee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 07:19:26 +0000 Subject: [PATCH] chore(docker): bump node from 25-alpine to 26-alpine Bumps node from 25-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7520f6c..ccaecdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ── Stage 1: Build the React frontend ────────────────────────────── # Pin to the build host platform so npm ci never runs under QEMU. # The output is static HTML/JS/CSS and is platform-independent. -FROM --platform=$BUILDPLATFORM node:25-alpine AS frontend-build +FROM --platform=$BUILDPLATFORM node:26-alpine AS frontend-build WORKDIR /build COPY frontend/package.json frontend/package-lock.json ./ RUN npm ci