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