# This dockerfile is specific to building Multus admission controller for OpenShift
FROM openshift/golang-builder@sha256:2c34135dc4d4a35fa19775e4e559e2e6f2e476a0ccdc993360e3663729904035 AS builder
ENV __doozer=update BUILD_RELEASE=202201210133.p0.g3c28a57.assembly.stream BUILD_VERSION=v4.9.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=9 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.9.0-202201210133.p0.g3c28a57.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=3c28a57 OS_GIT_VERSION=4.9.0-202201210133.p0.g3c28a57.assembly.stream-3c28a57 SOURCE_DATE_EPOCH=1628779000 SOURCE_GIT_COMMIT=3c28a57a831d11380e612a616820bf8a42261d9d SOURCE_GIT_TAG=3c28a57 SOURCE_GIT_URL=https://github.com/openshift/multus-admission-controller 

# Add everything
ENV PKG_NAME=github.com/k8snetworkplumbingwg/net-attach-def-admission-controller
ENV PKG_PATH=/go/src/$PKG_NAME
ENV GO111MODULE=off
RUN mkdir -p $PKG_PATH

COPY . $PKG_PATH/
WORKDIR $PKG_PATH
# RUN go install ./...
RUN ./build.sh

WORKDIR /

FROM openshift/ose-base:v4.9.0-202112140956.p0.gf93eca8.assembly.stream
ENV __doozer=update BUILD_RELEASE=202201210133.p0.g3c28a57.assembly.stream BUILD_VERSION=v4.9.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=9 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.9.0-202201210133.p0.g3c28a57.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=3c28a57 OS_GIT_VERSION=4.9.0-202201210133.p0.g3c28a57.assembly.stream-3c28a57 SOURCE_DATE_EPOCH=1628779000 SOURCE_GIT_COMMIT=3c28a57a831d11380e612a616820bf8a42261d9d SOURCE_GIT_TAG=3c28a57 SOURCE_GIT_URL=https://github.com/openshift/multus-admission-controller 
COPY --from=builder /go/src/github.com/k8snetworkplumbingwg/net-attach-def-admission-controller/bin/webhook /usr/bin/


CMD ["/usr/bin/webhook"]

LABEL \
        io.k8s.display-name="Container Networking Plugins" \
        io.k8s.description="This is a component of OpenShift Container Platform and provides an admission controller for Multus CNI custom resources." \
        io.openshift.tags="openshift" \
        maintainer="Doug Smith <dosmith@redhat.com>" \
        name="openshift/ose-multus-admission-controller" \
        com.redhat.component="ose-multus-admission-controller-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Networking" \
        io.openshift.maintainer.subcomponent="multus" \
        release="202201210133.p0.g3c28a57.assembly.stream" \
        io.openshift.build.commit.id="3c28a57a831d11380e612a616820bf8a42261d9d" \
        io.openshift.build.source-location="https://github.com/openshift/multus-admission-controller" \
        io.openshift.build.commit.url="https://github.com/openshift/multus-admission-controller/commit/3c28a57a831d11380e612a616820bf8a42261d9d" \
        version="v4.9.0"

