FROM openshift/golang-builder:1.12 AS builder
ENV __doozer=update BUILD_RELEASE=202009151447.p0 BUILD_VERSION=v4.3.37 OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=37 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.3.37-202009151447.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=fa71866 OS_GIT_VERSION=4.3.37-202009151447.p0-fa71866 SOURCE_DATE_EPOCH=1594340350 SOURCE_GIT_COMMIT=fa71866510868d6ff205ef63293bec456fcf36e2 SOURCE_GIT_TAG=v0.0.0-235-gfa718665 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.3.37.20200915.151322
ENV __doozer=update BUILD_RELEASE=202009151447.p0 BUILD_VERSION=v4.3.37 OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=37 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.3.37-202009151447.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=fa71866 OS_GIT_VERSION=4.3.37-202009151447.p0-fa71866 SOURCE_DATE_EPOCH=1594340350 SOURCE_GIT_COMMIT=fa71866510868d6ff205ef63293bec456fcf36e2 SOURCE_GIT_TAG=v0.0.0-235-gfa718665 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="202009151447.p0" \
        io.openshift.build.commit.id="fa71866510868d6ff205ef63293bec456fcf36e2" \
        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/fa71866510868d6ff205ef63293bec456fcf36e2" \
        version="v4.3.37"

