FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202007012112.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-202007012112.p0 
ENV __doozer=merge OS_GIT_COMMIT=798a64b OS_GIT_VERSION=4.5.0-202007012112.p0-798a64b SOURCE_DATE_EPOCH=1588246571 SOURCE_GIT_COMMIT=798a64b7d24aedec6d2bc65254f8f0c6767bffe0 SOURCE_GIT_TAG=v0.0.0-268-g798a64b7 SOURCE_GIT_URL=https://github.com/openshift/cluster-autoscaler-operator 
WORKDIR /go/src/github.com/openshift/cluster-autoscaler-operator
COPY . .
ENV NO_DOCKER=1
ENV BUILD_DEST=/go/bin/cluster-autoscaler-operator
RUN unset VERSION && make build

FROM openshift/ose-base:v4.5.0.20200701.222638
ENV __doozer=update BUILD_RELEASE=202007012112.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-202007012112.p0 
ENV __doozer=merge OS_GIT_COMMIT=798a64b OS_GIT_VERSION=4.5.0-202007012112.p0-798a64b SOURCE_DATE_EPOCH=1588246571 SOURCE_GIT_COMMIT=798a64b7d24aedec6d2bc65254f8f0c6767bffe0 SOURCE_GIT_TAG=v0.0.0-268-g798a64b7 SOURCE_GIT_URL=https://github.com/openshift/cluster-autoscaler-operator 
COPY --from=builder /go/bin/cluster-autoscaler-operator /usr/bin/
COPY --from=builder /go/src/github.com/openshift/cluster-autoscaler-operator/install /manifests
CMD ["/usr/bin/cluster-autoscaler-operator"]

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-cluster-autoscaler-operator" \
        com.redhat.component="ose-cluster-autoscaler-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202007012112.p0" \
        io.openshift.build.commit.id="798a64b7d24aedec6d2bc65254f8f0c6767bffe0" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-autoscaler-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-autoscaler-operator/commit/798a64b7d24aedec6d2bc65254f8f0c6767bffe0" \
        version="v4.5.0"

