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