From f4c7f87c3c165d6877457a8697c6148bb7f37ff1 Mon Sep 17 00:00:00 2001 From: davdhacs <105243888+davdhacs@users.noreply.github.com> Date: Tue, 28 Oct 2025 11:56:24 -0600 Subject: [PATCH] simple ubi10 switch for build --- images/stackrox-build.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/stackrox-build.Dockerfile b/images/stackrox-build.Dockerfile index 477493e5..a6ebc1f3 100644 --- a/images/stackrox-build.Dockerfile +++ b/images/stackrox-build.Dockerfile @@ -1,6 +1,6 @@ # Provides the tooling required to run StackRox dockerized build targets. -FROM registry.access.redhat.com/ubi8:latest +FROM registry.access.redhat.com/ubi10:latest SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -11,7 +11,7 @@ RUN dnf update -y && \ dnf-plugins-core \ wget \ && \ - dnf config-manager --set-enabled ubi-8-codeready-builder-rpms && \ + dnf config-manager --set-enabled ubi-10-codeready-builder-rpms && \ dnf update -y && \ wget --quiet -O - https://rpm.nodesource.com/setup_lts.x | bash - && \ wget --quiet -O - https://dl.yarnpkg.com/rpm/yarn.repo | tee /etc/yum.repos.d/yarn.repo && \