We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 416535b + 87358b4 commit 7ff9a14Copy full SHA for 7ff9a14
Dockerfile.nvidia
@@ -1,3 +1,5 @@
1
+ARG BASE_IMAGE_GO_DISTROLESS_DEV
2
+
3
FROM golang:alpine as builder
4
5
ARG GOPROXY
@@ -13,7 +15,7 @@ RUN apk add --no-cache --virtual build-dependencies build-base=~0.5 && \
13
15
make clean && \
14
16
make build
17
-FROM nvcr.io/nvidia/distroless/go:v3.2.0-dev
18
+FROM ${BASE_IMAGE_GO_DISTROLESS_DEV:-nvcr.io/nvidia/distroless/go:v3.2.1-dev}
19
20
USER 0:0
21
SHELL ["/busybox/sh", "-c"]
0 commit comments