From 756a1997d692241554589b8d9edc8718a6ea28aa Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Fri, 5 Jun 2026 22:10:08 +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/7691ed4dc0b6585b358f9e73fb736ace9a48a286/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 540e69d..1aa7657 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/nginx-120:latest +FROM registry.ci.openshift.org/ocp/5.0:base-rhel9 COPY --from=build /usr/src/app/dist /usr/share/nginx/html USER 1001