FROM openshift/golang-builder:1.12 AS builder
ENV SOURCE_GIT_COMMIT=efe2671d754a9e8126d65788df54ff12f3ee0254 SOURCE_GIT_TAG=efe2671d SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator SOURCE_DATE_EPOCH=1581719480 BUILD_VERSION=v4.3.3 BUILD_RELEASE=202002171705
WORKDIR /go/src/github.com/openshift/cluster-samples-operator
COPY . .
RUN make build

FROM openshift/ose-base:ubi7
ENV SOURCE_GIT_COMMIT=efe2671d754a9e8126d65788df54ff12f3ee0254 SOURCE_GIT_TAG=efe2671d SOURCE_GIT_URL=https://github.com/openshift/cluster-samples-operator SOURCE_DATE_EPOCH=1581719480 BUILD_VERSION=v4.3.3 BUILD_RELEASE=202002171705
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.3" \
        release="202002171705" \
        io.openshift.build.commit.id="efe2671d754a9e8126d65788df54ff12f3ee0254" \
        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/efe2671d754a9e8126d65788df54ff12f3ee0254"

