From 35acd4ffe8d193e7aa01456241d686644f9bc91e Mon Sep 17 00:00:00 2001 From: Anurag Saxena Date: Fri, 5 Jun 2026 11:08:38 -0400 Subject: [PATCH] Update hello-openshift base images from 4.16/4.17 to 4.22 The builder and base images referenced ocp/4.16 and 4.17 which have been pruned from the CI registry, causing PullBuilderImageFailed on all payload-job-with-prs runs. Co-Authored-By: Claude Opus 4.6 --- images/hello-openshift/Dockerfile.rhel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/hello-openshift/Dockerfile.rhel b/images/hello-openshift/Dockerfile.rhel index 4537090ced37..48d124b2fdea 100644 --- a/images/hello-openshift/Dockerfile.rhel +++ b/images/hello-openshift/Dockerfile.rhel @@ -1,9 +1,9 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.25-openshift-4.22 AS builder WORKDIR /go/src/github.com/openshift/hello-openshift COPY examples/hello-openshift . RUN go build -o /hello-openshift -FROM registry.ci.openshift.org/ocp/4.16:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 COPY --from=builder /hello-openshift /hello-openshift EXPOSE 8080 8888 USER 1001