From 36952f1395aa9bba2e58a2bb6a1cb565dcc5384c Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Sat, 27 Sep 2025 22:18:50 +0000 Subject: [PATCH] Updating golang-github-openshift-oauth-proxy-container image to be consistent with ART for 4.21 Reconciling with https://github.com/openshift/ocp-build-data/tree/2bb084cbeea78d508257d4127febe7d8b5bc09eb/images/golang-github-openshift-oauth-proxy.yml --- .ci-operator.yaml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci-operator.yaml b/.ci-operator.yaml index 461415cbc..e307e5af6 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/Dockerfile b/Dockerfile index a25a21509..5066d045b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -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 WORKDIR /go/src/github.com/openshift/oauth-proxy COPY . . RUN go build . -FROM registry.ci.openshift.org/ocp/4.20:base-rhel9 +FROM registry.ci.openshift.org/ocp/4.21:base-rhel9 COPY --from=builder /go/src/github.com/openshift/oauth-proxy/oauth-proxy /usr/bin/oauth-proxy ENTRYPOINT ["/usr/bin/oauth-proxy"]