From 7251ba786336bee52c9f2bae06b92feb01c62414 Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Mon, 27 Jul 2026 09:52:19 +0000 Subject: [PATCH] Updating cluster-update-console-plugin-container image to be consistent with ART for 5.0 Reconciling with https://github.com/openshift-eng/ocp-build-data/tree/7e3068230c1b2ba349579903983c811993b92820/images/cluster-update-console-plugin.yml --- .ci-operator.yaml | 6 +++--- Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 2cf3e07..1d88a59 100644 --- a/.ci-operator.yaml +++ b/.ci-operator.yaml @@ -1,4 +1,4 @@ build_root_image: - name: console-plugin-test-cypress - namespace: ci - tag: node22 \ No newline at end of file + name: release + namespace: openshift + tag: rhel-9-release-golang-1.26-openshift-5.0 diff --git a/Dockerfile b/Dockerfile index f04ce25..cda540b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/nodejs-22:latest AS build +FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-5.0 AS build USER root ENV CYPRESS_INSTALL_BINARY=0 @@ -9,7 +9,7 @@ WORKDIR /usr/src/app RUN LOCAL_YARN="node $(awk '/yarnPath:/{print $2}' .yarnrc.yml)" && \ $LOCAL_YARN install --immutable && $LOCAL_YARN build -FROM registry.access.redhat.com/ubi9/ubi-minimal +FROM registry.ci.openshift.org/ocp/5.0:base-rhel9 USER 0