From 4c22602162a1a6bf21d8515e8f4b34431b42c8c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 17:12:38 +0000 Subject: [PATCH] chore: bump ubi9/ubi from 9.7 to 9.8 Bumps ubi9/ubi from 9.7 to 9.8. --- updated-dependencies: - dependency-name: ubi9/ubi dependency-version: '9.8' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b50488e1..86a8f502 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---------- Base: Node.js 22 on UBI 9 ---------- -FROM registry.access.redhat.com/ubi9/ubi:9.7 AS node-base +FROM registry.access.redhat.com/ubi9/ubi:9.8 AS node-base RUN dnf module enable nodejs:22 -y && \ dnf install -y --nodocs nodejs npm && \ dnf clean all @@ -24,7 +24,7 @@ ENV NEXT_PUBLIC_APP_VERSION=${APP_VERSION} RUN echo "Building version: ${APP_VERSION} (${GIT_SHA})" && npm run build # ---------- Stage 3: Build minimal rootfs ---------- -FROM registry.access.redhat.com/ubi9/ubi:9.7 AS rootfs-builder +FROM registry.access.redhat.com/ubi9/ubi:9.8 AS rootfs-builder # Install only the shared libraries Node.js needs at runtime RUN mkdir -p /mnt/rootfs && \