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