FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202008100413.p0 BUILD_VERSION=v4.5.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=5 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.5.0-202008100413.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=4c4a96a OS_GIT_VERSION=4.5.0-202008100413.p0-4c4a96a SOURCE_DATE_EPOCH=1592509600 SOURCE_GIT_COMMIT=4c4a96ae422f60e5764065aa1230f3f004b19427 SOURCE_GIT_TAG=v3.11.0-849-g4c4a96ae SOURCE_GIT_URL=https://github.com/openshift/coredns 
WORKDIR /go/src/github.com/coredns/coredns
COPY . .
RUN GO111MODULE=on GOFLAGS=-mod=vendor go build -o coredns .

FROM openshift/ose-base:v4.5.0.20200810.041310
ENV __doozer=update BUILD_RELEASE=202008100413.p0 BUILD_VERSION=v4.5.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=5 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.5.0-202008100413.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=4c4a96a OS_GIT_VERSION=4.5.0-202008100413.p0-4c4a96a SOURCE_DATE_EPOCH=1592509600 SOURCE_GIT_COMMIT=4c4a96ae422f60e5764065aa1230f3f004b19427 SOURCE_GIT_TAG=v3.11.0-849-g4c4a96ae SOURCE_GIT_URL=https://github.com/openshift/coredns 
COPY --from=builder /go/src/github.com/coredns/coredns/coredns /usr/bin/

ENTRYPOINT ["/usr/bin/coredns"]

LABEL \
        io.k8s.display-name="CoreDNS" \
        io.k8s.description="CoreDNS delivers the DNS and Discovery Service for a Kubernetes cluster." \
        maintainer="dev@lists.openshift.redhat.com" \
        name="openshift/ose-coredns" \
        com.redhat.component="coredns-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202008100413.p0" \
        io.openshift.build.commit.id="4c4a96ae422f60e5764065aa1230f3f004b19427" \
        io.openshift.build.source-location="https://github.com/openshift/coredns" \
        io.openshift.build.commit.url="https://github.com/openshift/coredns/commit/4c4a96ae422f60e5764065aa1230f3f004b19427" \
        version="v4.5.0"

