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 c2f53a1 + 13be2ed commit eb3b43cCopy full SHA for eb3b43c
Dockerfile.nvidia
@@ -1,3 +1,5 @@
1
+ARG BASE_IMAGE_GO_DISTROLESS_DEV
2
+
3
FROM alpine:3 AS pkgs
4
5
RUN apk add --no-cache curl
@@ -11,7 +13,7 @@ RUN mkdir -p /usr/src/cni/bin && \
11
13
tar -xvf cni-plugins-linux-${TARGETARCH}-${VERSION}.tgz -C /usr/src/cni/bin/ && \
12
14
echo done
15
-FROM nvcr.io/nvidia/distroless/go:v3.2.0-dev AS entrypoint
16
+FROM ${BASE_IMAGE_GO_DISTROLESS_DEV:-nvcr.io/nvidia/distroless/go:v3.2.1-dev} AS entrypoint
17
18
USER 0:0
19
SHELL ["/busybox/sh", "-c"]
0 commit comments