From f84a10326aadf7f24cdeb7285bd1dfc57e018503 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 07:18:16 +0000 Subject: [PATCH] chore(docker): bump node from 22-alpine to 26-alpine Bumps node from 22-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 c3cddee..3b8594f 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:22-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