# 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@sha256:4820580c3368f320581eb9e32cf97aeec179a86c5749753a14ed76410a293d83 AS builder
ENV __doozer=update BUILD_RELEASE=202203081809.p0.g177035a.assembly.stream BUILD_VERSION=v4.10.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=10 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.10.0-202203081809.p0.g177035a.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=177035a OS_GIT_VERSION=4.10.0-202203081809.p0.g177035a.assembly.stream-177035a SOURCE_DATE_EPOCH=1642092413 SOURCE_GIT_COMMIT=177035a6720a99b86e3ecd0ee83ca9f0ec63b60c SOURCE_GIT_TAG=177035a6 SOURCE_GIT_URL=https://github.com/openshift/machine-api-provider-azure 
WORKDIR /go/src/github.com/openshift/machine-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.10.0.20220308.182903
ENV __doozer=update BUILD_RELEASE=202203081809.p0.g177035a.assembly.stream BUILD_VERSION=v4.10.0 OS_GIT_MAJOR=4 OS_GIT_MINOR=10 OS_GIT_PATCH=0 OS_GIT_TREE_STATE=clean OS_GIT_VERSION=4.10.0-202203081809.p0.g177035a.assembly.stream SOURCE_GIT_TREE_STATE=clean 
ENV __doozer=merge OS_GIT_COMMIT=177035a OS_GIT_VERSION=4.10.0-202203081809.p0.g177035a.assembly.stream-177035a SOURCE_DATE_EPOCH=1642092413 SOURCE_GIT_COMMIT=177035a6720a99b86e3ecd0ee83ca9f0ec63b60c SOURCE_GIT_TAG=177035a6 SOURCE_GIT_URL=https://github.com/openshift/machine-api-provider-azure 
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/termination-handler /

LABEL \
        io.openshift.release.operator="true" \
        name="openshift/ose-azure-machine-controllers" \
        com.redhat.component="ose-machine-api-provider-azure-container" \
        io.openshift.maintainer.product="OpenShift Container Platform" \
        io.openshift.maintainer.component="Cloud Compute" \
        io.openshift.maintainer.subcomponent="Other Providers" \
        release="202203081809.p0.g177035a.assembly.stream" \
        io.openshift.build.commit.id="177035a6720a99b86e3ecd0ee83ca9f0ec63b60c" \
        io.openshift.build.source-location="https://github.com/openshift/machine-api-provider-azure" \
        io.openshift.build.commit.url="https://github.com/openshift/machine-api-provider-azure/commit/177035a6720a99b86e3ecd0ee83ca9f0ec63b60c" \
        version="v4.10.0"

