FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202007060343.p0 BUILD_VERSION=v4.4.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=4 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.4.0-202007060343.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=1bb09ce OS_GIT_VERSION=4.4.0-202007060343.p0-1bb09ce SOURCE_DATE_EPOCH=1585160372 SOURCE_GIT_COMMIT=1bb09ce6d253e9127d7a1c69c0fdf9c29ea9d388 SOURCE_GIT_TAG=1bb09ce6 SOURCE_GIT_URL=https://github.com/openshift/cluster-machine-approver 
WORKDIR /go/src/github.com/openshift/cluster-machine-approver
COPY . .
RUN make build

FROM openshift/ose-base:v4.4.0.20200706.034325
ENV __doozer=update BUILD_RELEASE=202007060343.p0 BUILD_VERSION=v4.4.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=4 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.4.0-202007060343.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=1bb09ce OS_GIT_VERSION=4.4.0-202007060343.p0-1bb09ce SOURCE_DATE_EPOCH=1585160372 SOURCE_GIT_COMMIT=1bb09ce6d253e9127d7a1c69c0fdf9c29ea9d388 SOURCE_GIT_TAG=1bb09ce6 SOURCE_GIT_URL=https://github.com/openshift/cluster-machine-approver 
COPY --from=builder /go/src/github.com/openshift/cluster-machine-approver/machine-approver /usr/bin/
COPY manifests /manifests
ENTRYPOINT ["/usr/bin/machine-approver"]

LABEL \
        io.k8s.display-name="OpenShift cluster-machine-approver" \
        io.k8s.description="This is an OpenShift component for approving new machines" \
        com.redhat.component="ose-cluster-machine-approver-container" \
        maintainer="OpenShift Auth Team <aos-auth-team@redhat.com>" \
        name="openshift/ose-cluster-machine-approver" \
        version="v4.4.0" \
        io.openshift.tags="openshift" \
        io.openshift.release.operator="true" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202007060343.p0" \
        io.openshift.build.commit.id="1bb09ce6d253e9127d7a1c69c0fdf9c29ea9d388" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-machine-approver" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-machine-approver/commit/1bb09ce6d253e9127d7a1c69c0fdf9c29ea9d388"

