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=310d24c OS_GIT_VERSION=4.5.0-202007012112.p0-310d24c SOURCE_DATE_EPOCH=1586858682 SOURCE_GIT_COMMIT=310d24c44af97feb33b4f84aa0a5e047c33e66c6 SOURCE_GIT_TAG=310d24c SOURCE_GIT_URL=https://github.com/openshift/cluster-storage-operator 
WORKDIR /go/src/github.com/openshift/cluster-storage-operator
COPY . .
RUN 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=310d24c OS_GIT_VERSION=4.5.0-202007012112.p0-310d24c SOURCE_DATE_EPOCH=1586858682 SOURCE_GIT_COMMIT=310d24c44af97feb33b4f84aa0a5e047c33e66c6 SOURCE_GIT_TAG=310d24c SOURCE_GIT_URL=https://github.com/openshift/cluster-storage-operator 
COPY --from=builder /go/src/github.com/openshift/cluster-storage-operator/manager /usr/bin/cluster-storage-operator
COPY manifests /manifests
RUN useradd cluster-storage-operator
USER cluster-storage-operator
ENTRYPOINT ["/usr/bin/cluster-storage-operator"]

LABEL \
        io.openshift.release.operator="true" \
        io.k8s.display-name="OpenShift Cluster Storage Operator" \
        io.k8s.description="This is a component of OpenShift Container Platform and manages the lifecycle of cluster storage components." \
        maintainer="Matthew Wong <mawong@redhat.com>" \
        name="openshift/ose-cluster-storage-operator" \
        com.redhat.component="ose-cluster-storage-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Storage" \
        release="202007012112.p0" \
        io.openshift.build.commit.id="310d24c44af97feb33b4f84aa0a5e047c33e66c6" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-storage-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-storage-operator/commit/310d24c44af97feb33b4f84aa0a5e047c33e66c6" \
        version="v4.5.0"

