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 5aa3c88 + 2678eb1 commit be84a25Copy full SHA for be84a25
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
@@ -36,7 +38,7 @@ RUN make build
36
38
37
39
# Use distroless as minimal base image to package the manager binary
40
# Refer to https://github.com/GoogleContainerTools/distroless for more details
-FROM nvcr.io/nvidia/distroless/go:v3.2.0
41
+FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v3.2.1}
42
COPY . /src
43
WORKDIR /
44
COPY --from=builder /workspace/build/ipam-controller .
0 commit comments