FROM openshift/golang-builder:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.ac8570c.assembly.stream 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-202108202025.p0.git.ac8570c.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=ac8570c OS_GIT_VERSION=4.6.0-202108202025.p0.git.ac8570c.assembly.stream-ac8570c SOURCE_DATE_EPOCH=1626810146 SOURCE_GIT_COMMIT=ac8570cf3b646b0a0c0bdd9b39541f32aeadc75f SOURCE_GIT_TAG=v4.4-imagestream-1-45-gac8570c SOURCE_GIT_URL=https://github.com/openshift/oauth-proxy 
WORKDIR  /go/src/github.com/openshift/oauth-proxy
COPY . .
RUN go build .

FROM openshift/base-rhel8:v4.6.0.20210820.205426
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.ac8570c.assembly.stream 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-202108202025.p0.git.ac8570c.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=ac8570c OS_GIT_VERSION=4.6.0-202108202025.p0.git.ac8570c.assembly.stream-ac8570c SOURCE_DATE_EPOCH=1626810146 SOURCE_GIT_COMMIT=ac8570cf3b646b0a0c0bdd9b39541f32aeadc75f SOURCE_GIT_TAG=v4.4-imagestream-1-45-gac8570c SOURCE_GIT_URL=https://github.com/openshift/oauth-proxy 
COPY --from=builder /go/src/github.com/openshift/oauth-proxy/oauth-proxy /usr/bin/oauth-proxy
ENTRYPOINT ["/usr/bin/oauth-proxy"]

LABEL \
        License="GPLv2+" \
        io.k8s.description="OpenShift OAuth Proxy." \
        io.k8s.display-name="OpenShift OAuth Proxy" \
        io.openshift.tags="oauth" \
        vendor="Red Hat" \
        name="openshift/ose-oauth-proxy" \
        com.redhat.component="golang-github-openshift-oauth-proxy-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        release="202108202025.p0.git.ac8570c.assembly.stream" \
        io.openshift.build.commit.id="ac8570cf3b646b0a0c0bdd9b39541f32aeadc75f" \
        io.openshift.build.source-location="https://github.com/openshift/oauth-proxy" \
        io.openshift.build.commit.url="https://github.com/openshift/oauth-proxy/commit/ac8570cf3b646b0a0c0bdd9b39541f32aeadc75f" \
        version="v4.6.0"

