-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathDockerfile
More file actions
58 lines (43 loc) · 1.55 KB
/
Dockerfile
File metadata and controls
58 lines (43 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 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_DEV
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_DEV:-nvcr.io/nvidia/distroless/go:v4.0.1-dev}
# hadolint ignore=DL3002
USER 0:0
SHELL ["/busybox/sh", "-c"]
# hadolint ignore=DL4005
RUN ln -s /busybox/sh /bin/sh
COPY --from=builder /usr/src/k8s-rdma-shared-dp/build/k8s-rdma-shared-dp /bin/
COPY . /src
RUN mkdir -p /usr/share/hwdata
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"]