FROM openshift/golang-builder:1.12 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=7 OS_GIT_VERSION=4.3.7-202003161611-17af9b2 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=17af9b24571d42421d258ded8073662d5dc8895f SOURCE_GIT_TAG=17af9b24 SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator SOURCE_DATE_EPOCH=1583531828 OS_GIT_COMMIT=17af9b2 BUILD_VERSION=v4.3.7 BUILD_RELEASE=202003161611
WORKDIR /go/src/github.com/openshift/cluster-samples-operator
COPY . .
RUN make build

FROM openshift/ose-base:ubi7
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=7 OS_GIT_VERSION=4.3.7-202003161611-17af9b2 OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=17af9b24571d42421d258ded8073662d5dc8895f SOURCE_GIT_TAG=17af9b24 SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator SOURCE_DATE_EPOCH=1583531828 OS_GIT_COMMIT=17af9b2 BUILD_VERSION=v4.3.7 BUILD_RELEASE=202003161611
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" \
        version="v4.3.7" \
        release="202003161611" \
        io.openshift.build.commit.id="17af9b24571d42421d258ded8073662d5dc8895f" \
        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/17af9b24571d42421d258ded8073662d5dc8895f"

