From 1bce8b22733c9d604f43986e72c02e855dc2b1bd Mon Sep 17 00:00:00 2001 From: AOS Automation Release Team Date: Wed, 16 Jun 2021 20:41:46 +0000 Subject: [PATCH] UPSTREAM: : openshift: Updating coredns images to be consistent with ART Reconciling with https://github.com/openshift/ocp-build-data/tree/691e628254f318ce56efda5edc7448ec743c37b8/images/coredns.yml --- Dockerfile.openshift.rhel7 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.openshift.rhel7 b/Dockerfile.openshift.rhel7 index 2e9211d184e..310629fc6e5 100644 --- a/Dockerfile.openshift.rhel7 +++ b/Dockerfile.openshift.rhel7 @@ -1,9 +1,9 @@ -FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.8 AS builder +FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.9 AS builder WORKDIR /go/src/github.com/coredns/coredns COPY . . RUN GO111MODULE=on GOFLAGS=-mod=vendor go build -o coredns . -FROM registry.ci.openshift.org/ocp/4.8:base +FROM registry.ci.openshift.org/ocp/4.9:base COPY --from=builder /go/src/github.com/coredns/coredns/coredns /usr/bin/ ENTRYPOINT ["/usr/bin/coredns"]