FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202110051546.p0.git.319e70c.assembly.stream BUILD_VERSION=v4.7.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=7 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.7.0-202110051546.p0.git.319e70c.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=319e70c OS_GIT_VERSION=4.7.0-202110051546.p0.git.319e70c.assembly.stream-319e70c SOURCE_DATE_EPOCH=1629310634 SOURCE_GIT_COMMIT=319e70c1dacc87e9d88c4f364541699979c31602 SOURCE_GIT_TAG=v0.5.0-rc.0-1166-g319e70c1 SOURCE_GIT_URL=https://github.com/openshift/thanos 
WORKDIR /go/src/github.com/improbable-eng/thanos
COPY . .
ENV GOFLAGS="-mod=vendor"
ENV GO111MODULE=on
ENV GOPROXY=direct
# Installing using the upstream Makefile doesn't work with older versions of Git and newer versions of Go.
# Instead install promu from the upstream tarball.
# For downstream builds, promu is available from the package repositories.
RUN if ! yum install -y prometheus-promu; then \
        curl -s -L https://github.com/prometheus/promu/releases/download/v0.5.0/promu-0.5.0.linux-amd64.tar.gz | tar -xzvf - -C /usr/bin  --strip-components 1 promu-0.5.0.linux-amd64/promu; \
    fi; \
    promu build;
FROM openshift/ose-base:v4.7.0.20211005.155606
ENV __doozer=update BUILD_RELEASE=202110051546.p0.git.319e70c.assembly.stream BUILD_VERSION=v4.7.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=7 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.7.0-202110051546.p0.git.319e70c.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=319e70c OS_GIT_VERSION=4.7.0-202110051546.p0.git.319e70c.assembly.stream-319e70c SOURCE_DATE_EPOCH=1629310634 SOURCE_GIT_COMMIT=319e70c1dacc87e9d88c4f364541699979c31602 SOURCE_GIT_TAG=v0.5.0-rc.0-1166-g319e70c1 SOURCE_GIT_URL=https://github.com/openshift/thanos 

COPY --from=builder /go/src/github.com/improbable-eng/thanos/thanos /bin/thanos

USER       nobody
ENTRYPOINT [ "/bin/thanos" ]

LABEL \
        io.k8s.display-name="OpenShift Thanos" \
        io.k8s.description="Highly available Prometheus setup with long term storage capabilities." \
        io.openshift.tags="prometheus,monitoring" \
        summary="Highly available Prometheus setup with long term storage capabilities." \
        maintainer="OpenShift Monitoring Team <team-monitoring@redhat.com>" \
        name="openshift/ose-thanos" \
        com.redhat.component="ose-thanos-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Monitoring" \
        release="202110051546.p0.git.319e70c.assembly.stream" \
        io.openshift.build.commit.id="319e70c1dacc87e9d88c4f364541699979c31602" \
        io.openshift.build.source-location="https://github.com/openshift/thanos" \
        io.openshift.build.commit.url="https://github.com/openshift/thanos/commit/319e70c1dacc87e9d88c4f364541699979c31602" \
        version="v4.7.0"

