# Copyright 2019 The Kubernetes Authors.
#
# 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:rhel_8_golang_1.15 AS builder
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.7a14c7f.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.7a14c7f.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=7a14c7f OS_GIT_VERSION=4.6.0-202108202025.p0.git.7a14c7f.assembly.stream-7a14c7f SOURCE_DATE_EPOCH=1616620370 SOURCE_GIT_COMMIT=7a14c7f1a41a1b5b7bde1367464ae9552f24609b SOURCE_GIT_TAG=v0.1.0-alpha.3-197-g7a14c7f1 SOURCE_GIT_URL=https://github.com/openshift/cluster-api-provider-azure 
WORKDIR /go/src/sigs.k8s.io/cluster-api-provider-azure
COPY . .
# VERSION env gets set in the openshift/release image and refers to the golang version, which interferes with our own
RUN unset VERSION \
  && GOPROXY=off NO_DOCKER=1 make build

FROM openshift/ose-base:v4.6.0.20210820.205426
ENV __doozer=update BUILD_RELEASE=202108202025.p0.git.7a14c7f.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.7a14c7f.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=7a14c7f OS_GIT_VERSION=4.6.0-202108202025.p0.git.7a14c7f.assembly.stream-7a14c7f SOURCE_DATE_EPOCH=1616620370 SOURCE_GIT_COMMIT=7a14c7f1a41a1b5b7bde1367464ae9552f24609b SOURCE_GIT_TAG=v0.1.0-alpha.3-197-g7a14c7f1 SOURCE_GIT_URL=https://github.com/openshift/cluster-api-provider-azure 
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/termination-handler /

LABEL \
        name="openshift/ose-azure-machine-controllers" \
        com.redhat.component="ose-azure-machine-controllers-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Cloud Compute" \
        io.openshift.maintainer.subcomponent="Other Providers" \
        release="202108202025.p0.git.7a14c7f.assembly.stream" \
        io.openshift.build.commit.id="7a14c7f1a41a1b5b7bde1367464ae9552f24609b" \
        io.openshift.build.source-location="https://github.com/openshift/cluster-api-provider-azure" \
        io.openshift.build.commit.url="https://github.com/openshift/cluster-api-provider-azure/commit/7a14c7f1a41a1b5b7bde1367464ae9552f24609b" \
        version="v4.6.0"

