FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202106111650.p0.git.70b0e7a 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-202106111650.p0.git.70b0e7a SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=70b0e7a OS_GIT_VERSION=4.5.0-202106111650.p0.git.70b0e7a-70b0e7a SOURCE_DATE_EPOCH=1616921383 SOURCE_GIT_COMMIT=70b0e7a795f7e8acc44bc116f6133c21b7744bee SOURCE_GIT_TAG=70b0e7a7 SOURCE_GIT_URL=https://github.com/openshift/cluster-ingress-operator 
WORKDIR /ingress-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.5.0.20210611.170122
ENV __doozer=update BUILD_RELEASE=202106111650.p0.git.70b0e7a 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-202106111650.p0.git.70b0e7a SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=70b0e7a OS_GIT_VERSION=4.5.0-202106111650.p0.git.70b0e7a-70b0e7a SOURCE_DATE_EPOCH=1616921383 SOURCE_GIT_COMMIT=70b0e7a795f7e8acc44bc116f6133c21b7744bee SOURCE_GIT_TAG=70b0e7a7 SOURCE_GIT_URL=https://github.com/openshift/cluster-ingress-operator 
COPY --from=builder /ingress-operator/ingress-operator /usr/bin/
COPY manifests /manifests
ENTRYPOINT ["/usr/bin/ingress-operator"]

LABEL \
        io.openshift.release.operator="true" \
        io.k8s.display-name="OpenShift ingress-operator" \
        io.k8s.description="This is a component of OpenShift Container Platform and manages the lifecycle of ingress controller components." \
        maintainer="Dan Mace <dmace@redhat.com>" \
        name="openshift/ose-cluster-ingress-operator" \
        com.redhat.component="ose-cluster-ingress-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Routing" \
        release="202106111650.p0.git.70b0e7a" \
        io.openshift.build.commit.id="70b0e7a795f7e8acc44bc116f6133c21b7744bee" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-ingress-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-ingress-operator/commit/70b0e7a795f7e8acc44bc116f6133c21b7744bee" \
        version="v4.5.0"

