diff --git a/.ci-operator.yaml b/.ci-operator.yaml index e307e5a..284a910 100644 --- a/.ci-operator.yaml +++ b/.ci-operator.yaml @@ -1,4 +1,4 @@ build_root_image: name: release namespace: openshift - tag: rhel-9-release-golang-1.24-openshift-4.21 + tag: rhel-9-release-golang-1.24-openshift-4.22 diff --git a/Dockerfile.art b/Dockerfile.art index c4cb43a..9766d21 100644 --- a/Dockerfile.art +++ b/Dockerfile.art @@ -1,5 +1,5 @@ # Builder container -FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.21 AS build +FROM registry.ci.openshift.org/ocp/builder:rhel-9-base-nodejs-openshift-4.22 AS build # Copy app source COPY . /opt/app-root/src/app @@ -24,7 +24,7 @@ RUN test -d ${REMOTE_SOURCES_DIR}/cachito-gomod-with-deps || exit 1; \ && yarn install --frozen-lockfile && yarn build # Web server container -FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 RUN INSTALL_PKGS="nginx" && \ dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \