Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .ci-operator.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build_root_image:
name: console-plugin-test-cypress
namespace: ci
tag: node22
name: release
namespace: openshift
tag: rhel-9-release-golang-1.26-openshift-5.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down