FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202007290337.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-202007290337.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=9c9335d OS_GIT_VERSION=4.5.0-202007290337.p0-9c9335d SOURCE_DATE_EPOCH=1593715816 SOURCE_GIT_COMMIT=9c9335da84dd1a2b070863c3d80beaf3163f92c9 SOURCE_GIT_TAG=v0.0.0-57-g9c9335d SOURCE_GIT_URL=https://github.com/openshift/vertical-pod-autoscaler-operator 
WORKDIR /go/src/github.com/openshift/vertical-pod-autoscaler-operator
COPY . .
ENV NO_DOCKER=1
ENV BUILD_DEST=/go/bin/vertical-pod-autoscaler-operator
RUN unset VERSION && make build

FROM openshift/ose-base:v4.5.0-202007281519.p0
ENV __doozer=update BUILD_RELEASE=202007290337.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-202007290337.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=9c9335d OS_GIT_VERSION=4.5.0-202007290337.p0-9c9335d SOURCE_DATE_EPOCH=1593715816 SOURCE_GIT_COMMIT=9c9335da84dd1a2b070863c3d80beaf3163f92c9 SOURCE_GIT_TAG=v0.0.0-57-g9c9335d SOURCE_GIT_URL=https://github.com/openshift/vertical-pod-autoscaler-operator 
COPY --from=builder /go/bin/vertical-pod-autoscaler-operator /usr/bin/
COPY --from=builder /go/src/github.com/openshift/vertical-pod-autoscaler-operator/install /manifests
CMD ["/usr/bin/vertical-pod-autoscaler-operator"]
#LABEL io.openshift.release.operator true

LABEL \
        com.redhat.delivery.appregistry="false" \
        name="openshift/ose-vertical-pod-autoscaler-rhel7-operator" \
        com.redhat.component="ose-vertical-pod-autoscaler-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202007290337.p0" \
        io.openshift.build.commit.id="9c9335da84dd1a2b070863c3d80beaf3163f92c9" \
        io.openshift.build.source-location="https://github.com/openshift/vertical-pod-autoscaler-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/vertical-pod-autoscaler-operator/commit/9c9335da84dd1a2b070863c3d80beaf3163f92c9" \
        version="v4.5.0"

