FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.a6320f4.assembly.stream BUILD_VERSION=v4.6.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=6 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.6.0-202108202025.p0.git.a6320f4.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=a6320f4 OS_GIT_VERSION=4.6.0-202108202025.p0.git.a6320f4.assembly.stream-a6320f4 SOURCE_DATE_EPOCH=1611301260 SOURCE_GIT_COMMIT=a6320f458e1bc658048625ab9a1c3020f3a6e165 SOURCE_GIT_TAG=a6320f45 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.6.0.20210820.205426
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.a6320f4.assembly.stream BUILD_VERSION=v4.6.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=6 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.6.0-202108202025.p0.git.a6320f4.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=a6320f4 OS_GIT_VERSION=4.6.0-202108202025.p0.git.a6320f4.assembly.stream-a6320f4 SOURCE_DATE_EPOCH=1611301260 SOURCE_GIT_COMMIT=a6320f458e1bc658048625ab9a1c3020f3a6e165 SOURCE_GIT_TAG=a6320f45 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.6.0" \
        io.openshift.tags="openshift" \
        io.openshift.release.operator="true" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202108202025.p0.git.a6320f4.assembly.stream" \
        io.openshift.build.commit.id="a6320f458e1bc658048625ab9a1c3020f3a6e165" \
        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/a6320f458e1bc658048625ab9a1c3020f3a6e165"

