# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

FROM openshift/golang-builder@sha256:2c34135dc4d4a35fa19775e4e559e2e6f2e476a0ccdc993360e3663729904035 AS builder
ENV __doozer=update BUILD_RELEASE=202201210133.p0.g15a6add.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.g15a6add.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=15a6add OS_GIT_VERSION=4.9.0-202201210133.p0.g15a6add.assembly.stream-15a6add SOURCE_DATE_EPOCH=1642682128 SOURCE_GIT_COMMIT=15a6add2ff5b1858f5d1bc3944a352dcf0ee010f SOURCE_GIT_TAG=v0.1-179-g15a6add SOURCE_GIT_URL=https://github.com/openshift/cluster-api-provider-ovirt 

ARG version
ARG release

LABEL   com.redhat.component="machine-api" \
        name="cluster-api-provider-ovirt" \
        version="$version" \
        release="$release" \
        architecture="x86_64" \
        summary="cluster-api-provider-ovirt" \
        maintainer="OCP RHV Team <ocprhvteam@redhat.com>"

WORKDIR /go/cluster-api-provider-ovirt
COPY . .


RUN git --version
RUN make build

FROM openshift/ose-base:v4.9.0-202112140956.p0.gf93eca8.assembly.stream
ENV __doozer=update BUILD_RELEASE=202201210133.p0.g15a6add.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.g15a6add.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=15a6add OS_GIT_VERSION=4.9.0-202201210133.p0.g15a6add.assembly.stream-15a6add SOURCE_DATE_EPOCH=1642682128 SOURCE_GIT_COMMIT=15a6add2ff5b1858f5d1bc3944a352dcf0ee010f SOURCE_GIT_TAG=v0.1-179-g15a6add SOURCE_GIT_URL=https://github.com/openshift/cluster-api-provider-ovirt 

COPY --from=builder /go/cluster-api-provider-ovirt/bin/machine-controller-manager /

LABEL \
        name="openshift/ose-ovirt-machine-controllers" \
        com.redhat.component="ose-ovirt-machine-controllers-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Cloud Compute" \
        io.openshift.maintainer.subcomponent="oVirt Provider" \
        release="202201210133.p0.g15a6add.assembly.stream" \
        io.openshift.build.commit.id="15a6add2ff5b1858f5d1bc3944a352dcf0ee010f" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-api-provider-ovirt" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-api-provider-ovirt/commit/15a6add2ff5b1858f5d1bc3944a352dcf0ee010f" \
        version="v4.9.0"

