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 bbcf7a8 + 654af87 commit 02cb495Copy full SHA for 02cb495
Dockerfile
@@ -14,6 +14,8 @@
14
#
15
# SPDX-License-Identifier: Apache-2.0
16
17
+ARG BASE_IMAGE_GO_DISTROLESS
18
+
19
# Build the image
20
FROM golang:1.24 as builder
21
@@ -37,7 +39,7 @@ RUN task build
37
39
38
40
# Use distroless as minimal base image to package the manager binary
41
# Refer to https://github.com/GoogleContainerTools/distroless for more details
-FROM nvcr.io/nvidia/distroless/go:v3.2.0
42
+FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v3.2.1}
43
WORKDIR /
44
COPY --from=builder /workspace/build/nic-feature-discovery .
45
COPY . /src
0 commit comments