FROM openshift/golang-builder@sha256:4820580c3368f320581eb9e32cf97aeec179a86c5749753a14ed76410a293d83 AS builder
ENV __doozer=update BUILD_RELEASE=202202160023.p0.g4052b31.assembly.stream BUILD_VERSION=v4.10.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=10 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.10.0-202202160023.p0.g4052b31.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=4052b31 OS_GIT_VERSION=4.10.0-202202160023.p0.g4052b31.assembly.stream-4052b31 SOURCE_DATE_EPOCH=1639039169 SOURCE_GIT_COMMIT=4052b317ff62b93019a11e2981d1d81b8b6b2e4d SOURCE_GIT_TAG=v0.2.0-415-g4052b317 SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter 

COPY . /go/src/github.com/kubernetes-sigs/prometheus-adapter

WORKDIR /go/src/github.com/kubernetes-sigs/prometheus-adapter
RUN make
RUN mv /go/src/github.com/kubernetes-sigs/prometheus-adapter/adapter /usr/bin/adapter

FROM openshift/ose-base:v4.10.0.20220216.010142
ENV __doozer=update BUILD_RELEASE=202202160023.p0.g4052b31.assembly.stream BUILD_VERSION=v4.10.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=10 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.10.0-202202160023.p0.g4052b31.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=4052b31 OS_GIT_VERSION=4.10.0-202202160023.p0.g4052b31.assembly.stream-4052b31 SOURCE_DATE_EPOCH=1639039169 SOURCE_GIT_COMMIT=4052b317ff62b93019a11e2981d1d81b8b6b2e4d SOURCE_GIT_TAG=v0.2.0-415-g4052b317 SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter 

COPY --from=builder /usr/bin/adapter /usr/bin/adapter
    

USER 1001

ENTRYPOINT ["/usr/bin/adapter"]

LABEL \
        io.k8s.display-name="OpenShift Prometheus Adapter" \
        io.k8s.description="This is a component of OpenShift Container Platform that provides the Kubernetes resource metrics API based on Prometheus metrics" \
        io.openshift.tags="openshift" \
        summary="This is a component of OpenShift Container Platform that provides the Kubernetes resource metrics API based on Prometheus metrics" \
        maintainer="OpenShift Monitoring Team <team-monitoring@redhat.com>" \
        name="openshift/ose-k8s-prometheus-adapter" \
        com.redhat.component="ose-prometheus-adapter-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Monitoring" \
        release="202202160023.p0.g4052b31.assembly.stream" \
        io.openshift.build.commit.id="4052b317ff62b93019a11e2981d1d81b8b6b2e4d" \
        io.openshift.build.source-location="https://github.com/openshift/k8s-prometheus-adapter" \
        io.openshift.build.commit.url="https://github.com/openshift/k8s-prometheus-adapter/commit/4052b317ff62b93019a11e2981d1d81b8b6b2e4d" \
        version="v4.10.0"

