FROM openshift/golang-builder:1.13 AS builder
ENV __doozer=update BUILD_RELEASE=202006080610 BUILD_VERSION=v4.4.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=4 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.4.0-202006080610 
ENV __doozer=merge OS_GIT_COMMIT=fc2f9d5 OS_GIT_VERSION=4.4.0-202006080610-fc2f9d5 SOURCE_DATE_EPOCH=1591215646 SOURCE_GIT_COMMIT=fc2f9d500f46c3de5caef7474886872b67e3d916 SOURCE_GIT_TAG=fc2f9d50 SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator 
WORKDIR /go/src/github.com/openshift/cluster-samples-operator
COPY . .
RUN make build

FROM openshift/ose-base:ubi7
ENV __doozer=update BUILD_RELEASE=202006080610 BUILD_VERSION=v4.4.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=4 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.4.0-202006080610 
ENV __doozer=merge OS_GIT_COMMIT=fc2f9d5 OS_GIT_VERSION=4.4.0-202006080610-fc2f9d5 SOURCE_DATE_EPOCH=1591215646 SOURCE_GIT_COMMIT=fc2f9d500f46c3de5caef7474886872b67e3d916 SOURCE_GIT_TAG=fc2f9d50 SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator 
COPY --from=builder /go/src/github.com/openshift/cluster-samples-operator/cluster-samples-operator /usr/bin/
RUN ln -f /usr/bin/cluster-samples-operator /usr/bin/cluster-samples-operator-watch
COPY manifests/image-references manifests/0* /manifests/
COPY vendor/github.com/openshift/api/samples/v1/0000_10_samplesconfig.crd.yaml /manifests/
COPY tmp/build/assets /opt/openshift/
RUN useradd cluster-samples-operator
USER cluster-samples-operator
ENTRYPOINT []
CMD ["/usr/bin/cluster-samples-operator"]

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-cluster-samples-operator" \
        com.redhat.component="ose-cluster-samples-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Samples" \
        version="v4.4.0" \
        release="202006080610" \
        io.openshift.build.commit.id="fc2f9d500f46c3de5caef7474886872b67e3d916" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-samples-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-samples-operator/commit/fc2f9d500f46c3de5caef7474886872b67e3d916"

