FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202101230113.p0 BUILD_VERSION=v4.6.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=6 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.6.0-202101230113.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=a84c25e OS_GIT_VERSION=4.6.0-202101230113.p0-a84c25e SOURCE_DATE_EPOCH=1605801577 SOURCE_GIT_COMMIT=a84c25eeacf32d28af7b6b995b29564f92dd799d SOURCE_GIT_TAG=a84c25e SOURCE_GIT_URL=https://github.com/openshift/elasticsearch-proxy 
WORKDIR  /go/src/github.com/openshift/elasticsearch-proxy
COPY . .
RUN make

FROM openshift/ose-base:v4.6.0.20210123.015536
ENV __doozer=update BUILD_RELEASE=202101230113.p0 BUILD_VERSION=v4.6.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=6 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.6.0-202101230113.p0 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=a84c25e OS_GIT_VERSION=4.6.0-202101230113.p0-a84c25e SOURCE_DATE_EPOCH=1605801577 SOURCE_GIT_COMMIT=a84c25eeacf32d28af7b6b995b29564f92dd799d SOURCE_GIT_TAG=a84c25e SOURCE_GIT_URL=https://github.com/openshift/elasticsearch-proxy 
COPY --from=builder /go/src/github.com/openshift/elasticsearch-proxy/bin/elasticsearch-proxy /usr/bin/
ENTRYPOINT ["/usr/bin/elasticsearch-proxy"]

LABEL \
        io.k8s.display-name="OpenShift ElasticSearch Proxy" \
        io.k8s.description="OpenShift ElasticSearch Proxy component of OpenShift Cluster Logging" \
        name="openshift/ose-elasticsearch-proxy" \
        com.redhat.component="ose-elasticsearch-proxy-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Logging" \
        release="202101230113.p0" \
        io.openshift.build.commit.id="a84c25eeacf32d28af7b6b995b29564f92dd799d" \
        io.openshift.build.source-location="https://github.com/openshift/elasticsearch-proxy" \
        io.openshift.build.commit.url="https://github.com/openshift/elasticsearch-proxy/commit/a84c25eeacf32d28af7b6b995b29564f92dd799d" \
        version="v4.6.0"

