FROM openshift/golang-builder:1.12 AS builder
ENV __doozer=update BUILD_RELEASE=202009151447.p0 BUILD_VERSION=v4.3.37 OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=37 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.3.37-202009151447.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=01ee789 OS_GIT_VERSION=4.3.37-202009151447.p0-01ee789 SOURCE_DATE_EPOCH=1599748110 SOURCE_GIT_COMMIT=01ee789f0fcb40d4f1d57f0f6c2e23a1410c435a SOURCE_GIT_TAG=01ee789f SOURCE_GIT_URL=https://github.com/openshift/insights-operator 
WORKDIR /go/src/github.com/openshift/insights-operator
COPY . .
RUN make build

FROM openshift/ose-base:v4.3.37.20200915.151322
ENV __doozer=update BUILD_RELEASE=202009151447.p0 BUILD_VERSION=v4.3.37 OS_GIT_MAJOR=4 OS_GIT_MINOR=3 OS_GIT_PATCH=37 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.3.37-202009151447.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=01ee789 OS_GIT_VERSION=4.3.37-202009151447.p0-01ee789 SOURCE_DATE_EPOCH=1599748110 SOURCE_GIT_COMMIT=01ee789f0fcb40d4f1d57f0f6c2e23a1410c435a SOURCE_GIT_TAG=01ee789f SOURCE_GIT_URL=https://github.com/openshift/insights-operator 
COPY --from=builder /go/src/github.com/openshift/insights-operator/bin/insights-operator /usr/bin/
COPY config/pod.yaml /etc/insights-operator/server.yaml
COPY manifests /manifests
ENTRYPOINT ["/usr/bin/insights-operator"]

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-insights-operator" \
        com.redhat.component="ose-insights-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Insights operator" \
        release="202009151447.p0" \
        io.openshift.build.commit.id="01ee789f0fcb40d4f1d57f0f6c2e23a1410c435a" \
        io.openshift.build.source-location="https://github.com/openshift/insights-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/insights-operator/commit/01ee789f0fcb40d4f1d57f0f6c2e23a1410c435a" \
        version="v4.3.37"

