FROM openshift/golang-builder:rhel_8_golang_1.15
ENV __doozer=update BUILD_RELEASE=202107070256.p0.git.7b38065 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-202107070256.p0.git.7b38065 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=7b38065 OS_GIT_VERSION=4.6.0-202107070256.p0.git.7b38065-7b38065 SOURCE_DATE_EPOCH=1614011390 SOURCE_GIT_COMMIT=7b3806565bcf4b21d103896f369304ad28fbc9ac SOURCE_GIT_TAG=7b38065 SOURCE_GIT_URL=https://github.com/openshift/csi-driver-manila-operator 
COPY . /go/src/github.com/openshift/csi-driver-manila-operator
RUN cd /go/src/github.com/openshift/csi-driver-manila-operator && \
    go build -mod vendor -o csi-driver-manila-operator cmd/csi-driver-manila-operator/main.go

FROM openshift/ose-base:v4.6.0.20210707.033320
ENV __doozer=update BUILD_RELEASE=202107070256.p0.git.7b38065 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-202107070256.p0.git.7b38065 SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=7b38065 OS_GIT_VERSION=4.6.0-202107070256.p0.git.7b38065-7b38065 SOURCE_DATE_EPOCH=1614011390 SOURCE_GIT_COMMIT=7b3806565bcf4b21d103896f369304ad28fbc9ac SOURCE_GIT_TAG=7b38065 SOURCE_GIT_URL=https://github.com/openshift/csi-driver-manila-operator 

ENV OPERATOR=/usr/local/bin/csi-driver-manila-operator \
    USER_UID=1001 \
    USER_NAME=csi-driver-manila-operator

COPY --from=0 /go/src/github.com/openshift/csi-driver-manila-operator/csi-driver-manila-operator ${OPERATOR}

COPY build/bin /usr/local/bin
RUN  /usr/local/bin/user_setup

ENTRYPOINT ["/usr/local/bin/entrypoint"]

USER ${USER_UID}

LABEL \
        name="openshift/ose-csi-driver-manila-operator" \
        com.redhat.component="csi-driver-manila-operator-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Installer" \
        io.openshift.maintainer.subcomponent="OpenShift on OpenStack" \
        release="202107070256.p0.git.7b38065" \
        io.openshift.build.commit.id="7b3806565bcf4b21d103896f369304ad28fbc9ac" \
        io.openshift.build.source-location="https://github.com/openshift/csi-driver-manila-operator" \
        io.openshift.build.commit.url="https://github.com/openshift/csi-driver-manila-operator/commit/7b3806565bcf4b21d103896f369304ad28fbc9ac" \
        version="v4.6.0"

