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.
1 parent ef29da5 commit 8d85a6bCopy full SHA for 8d85a6b
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
@@ -34,7 +36,7 @@ COPY . /workspace
34
36
# Build with make to apply all build logic defined in Makefile
35
37
RUN make build
38
-FROM nvcr.io/nvidia/distroless/go:v3.2.1
39
+FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v3.2.1}
40
WORKDIR /
41
COPY --from=builder /workspace/build/network-operator-init-container .
42
0 commit comments