FROM openshift/golang-builder:rhel_8_golang_1.16 AS builder
ENV __doozer=update BUILD_RELEASE=202111151318.p0.geb7466b.assembly.stream BUILD_VERSION=v4.9.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=9 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.9.0-202111151318.p0.geb7466b.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=eb7466b OS_GIT_VERSION=4.9.0-202111151318.p0.geb7466b.assembly.stream-eb7466b SOURCE_DATE_EPOCH=1636705163 SOURCE_GIT_COMMIT=eb7466b4a17f0b80a3a94a5796564700f87b1afc SOURCE_GIT_TAG=eb7466b4 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/base-rhel8:v4.9.0.20211115.131845
ENV __doozer=update BUILD_RELEASE=202111151318.p0.geb7466b.assembly.stream BUILD_VERSION=v4.9.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=9 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.9.0-202111151318.p0.geb7466b.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=eb7466b OS_GIT_VERSION=4.9.0-202111151318.p0.geb7466b.assembly.stream-eb7466b SOURCE_DATE_EPOCH=1636705163 SOURCE_GIT_COMMIT=eb7466b4a17f0b80a3a94a5796564700f87b1afc SOURCE_GIT_TAG=eb7466b4 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 assets/operator/ocp-x86_64 /opt/openshift/operator/x86_64
COPY assets/operator/ocp-s390x /opt/openshift/operator/s390x
COPY assets/operator/ocp-ppc64le /opt/openshift/operator/ppc64le
COPY assets/operator/ocp-aarch64 /opt/openshift/operator/aarch64
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" \
        release="202111151318.p0.geb7466b.assembly.stream" \
        io.openshift.build.commit.id="eb7466b4a17f0b80a3a94a5796564700f87b1afc" \
        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/eb7466b4a17f0b80a3a94a5796564700f87b1afc" \
        version="v4.9.0"

