diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 461415cbc5..e307e5af66 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.20 + tag: rhel-9-release-golang-1.24-openshift-4.21 diff --git a/operator-framework-tools.Dockerfile b/operator-framework-tools.Dockerfile index ccd89fd178..89da27db82 100644 --- a/operator-framework-tools.Dockerfile +++ b/operator-framework-tools.Dockerfile @@ -1,18 +1,18 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.20 AS builder-rhel8 +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.24-openshift-4.21 AS builder-rhel8 ENV GOPATH /go ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH WORKDIR /src COPY . . RUN make build/registry cross -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.21 AS builder ENV GOPATH /go ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH WORKDIR /src COPY . . RUN make build/registry cross -FROM registry.ci.openshift.org/ocp/4.20:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 ENTRYPOINT ["sh", "-c", "echo 'Running this image is not supported' && exit 1"] # clear any default CMD CMD []