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 017d58b commit 729bc71Copy full SHA for 729bc71
Dockerfile
@@ -14,6 +14,8 @@
14
#
15
# SPDX-License-Identifier: Apache-2.0
16
17
+ARG BASE_IMAGE_GO_DISTROLESS_DEV
18
+
19
FROM golang:1.25-alpine as builder
20
21
ARG GOPROXY
@@ -29,7 +31,7 @@ WORKDIR /usr/src/ipoib-cni
29
31
RUN make clean && \
30
32
make build
33
-FROM nvcr.io/nvidia/distroless/go:v3.2.0-dev
34
+FROM ${BASE_IMAGE_GO_DISTROLESS_DEV:-nvcr.io/nvidia/distroless/go:v3.2.1-dev}
35
36
USER 0:0
37
SHELL ["/busybox/sh", "-c"]
0 commit comments