FROM openshift/golang-builder:rhel_8_golang_1.15
ENV __doozer=update BUILD_RELEASE=202110262229.p0.git.fe62be9.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-202110262229.p0.git.fe62be9.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=fe62be9 OS_GIT_VERSION=4.6.0-202110262229.p0.git.fe62be9.assembly.stream-fe62be9 SOURCE_DATE_EPOCH=1631796699 SOURCE_GIT_COMMIT=fe62be967e2337da1238592f75c4010f0c6694a0 SOURCE_GIT_TAG=fe62be9 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.20211026.224932
ENV __doozer=update BUILD_RELEASE=202110262229.p0.git.fe62be9.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-202110262229.p0.git.fe62be9.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=fe62be9 OS_GIT_VERSION=4.6.0-202110262229.p0.git.fe62be9.assembly.stream-fe62be9 SOURCE_DATE_EPOCH=1631796699 SOURCE_GIT_COMMIT=fe62be967e2337da1238592f75c4010f0c6694a0 SOURCE_GIT_TAG=fe62be9 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="202110262229.p0.git.fe62be9.assembly.stream" \
        io.openshift.build.commit.id="fe62be967e2337da1238592f75c4010f0c6694a0" \
        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/fe62be967e2337da1238592f75c4010f0c6694a0" \
        version="v4.6.0"

