We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc9dd52 + 481372d commit 3dc3a65Copy full SHA for 3dc3a65
Dockerfile
@@ -14,6 +14,8 @@
14
#
15
# SPDX-License-Identifier: Apache-2.0
16
17
+ARG BASE_IMAGE_GO_DISTROLESS
18
+
19
FROM golang:1.24 AS builder
20
21
ARG GOPROXY
@@ -27,7 +29,7 @@ RUN go mod download
27
29
ADD ./ ./
28
30
RUN make all
31
-FROM nvcr.io/nvidia/distroless/go:v3.2.0
32
+FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v3.2.1}
33
LABEL org.opencontainers.image.source=https://nvcr.io/nvidia/cloud-native/multus-cni
34
WORKDIR /
35
# Copy the built binary and plugins from the builder stage
0 commit comments