# Copyright 2025 NVIDIA CORPORATION & AFFILIATES
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0

ARG BASE_IMAGE_GO_DISTROLESS

FROM golang:alpine as builder

COPY . /usr/src/k8s-rdma-shared-dp

ARG GOPROXY
ENV GOPROXY=$GOPROXY

ENV HTTP_PROXY $http_proxy
ENV HTTPS_PROXY $https_proxy

# hadolint ignore=DL3018
RUN apk add --no-cache build-base linux-headers
WORKDIR /usr/src/k8s-rdma-shared-dp
RUN make clean && \
    make build

FROM alpine:3 AS pkgs
# hadolint ignore=DL3018
RUN apk add --no-cache hwdata-pci kmod


FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v4.0.1}

# hadolint ignore=DL3002
USER 0:0

COPY --from=builder /usr/src/k8s-rdma-shared-dp/build/k8s-rdma-shared-dp /bin/
COPY . /src

COPY --from=pkgs /usr/share/hwdata/pci.ids /usr/share/hwdata/pci.ids
COPY --from=pkgs /sbin/lsmod /sbin/lsmod

LABEL io.k8s.display-name="RDMA Shared Device Plugin"

ENTRYPOINT ["/bin/k8s-rdma-shared-dp"]