FROM openshift/golang-builder:1.11 AS builder
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=2 OS_GIT_PATCH=22 OS_GIT_VERSION=4.2.22-202003020552-9c5a42a OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=9c5a42a3fb4bd2adfa24fc10292a36becc669e1e SOURCE_GIT_TAG=v0.2.0-196-g9c5a42a SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter SOURCE_DATE_EPOCH=1567579826 OS_GIT_COMMIT=9c5a42a BUILD_VERSION=v4.2.22 BUILD_RELEASE=202003020552

COPY . /go/src/github.com/directxman12/k8s-prometheus-adapter

WORKDIR /go/src/github.com/directxman12/k8s-prometheus-adapter
ENV GOFLAGS="-mod=vendor"
RUN make
RUN mv /go/src/github.com/directxman12/k8s-prometheus-adapter/_output/$(go env GOARCH)/adapter /usr/bin/cm-adapter


FROM openshift/ose-base:v4.2.22.20200302.055253
ENV OS_GIT_MAJOR=4 OS_GIT_MINOR=2 OS_GIT_PATCH=22 OS_GIT_VERSION=4.2.22-202003020552-9c5a42a OS_GIT_TREE_STATE=clean SOURCE_GIT_COMMIT=9c5a42a3fb4bd2adfa24fc10292a36becc669e1e SOURCE_GIT_TAG=v0.2.0-196-g9c5a42a SOURCE_GIT_URL=https://github.com/openshift/k8s-prometheus-adapter SOURCE_DATE_EPOCH=1567579826 OS_GIT_COMMIT=9c5a42a BUILD_VERSION=v4.2.22 BUILD_RELEASE=202003020552

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

USER 1001

ENTRYPOINT ["/usr/bin/cm-adapter"]

LABEL \
        io.k8s.display-name="OpenShift Prometheus Custom Metrics Adapter" \
        io.k8s.description="This is a component of OpenShift Container Platform that provides the Kubernetes custom metrics API based on Prometheus metrics" \
        io.openshift.tags="openshift" \
        maintainer="Solly Ross <sross@redhat.com>" \
        name="openshift/ose-k8s-prometheus-adapter" \
        com.redhat.component="ose-prometheus-adapter-container" \
        version="v4.2.22" \
        release="202003020552" \
        io.openshift.build.commit.id="9c5a42a3fb4bd2adfa24fc10292a36becc669e1e" \
        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/9c5a42a3fb4bd2adfa24fc10292a36becc669e1e"

