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 071f107 commit fcb3241Copy full SHA for fcb3241
.github/workflows/fork-ci.yml
@@ -21,3 +21,4 @@ jobs:
21
registry-username: ${{ secrets.NVCR_USERNAME }}
22
registry-token: ${{ secrets.NVCR_TOKEN }}
23
cicd-gh-token: ${{ secrets.GH_TOKEN_NVIDIA_CI_CD }}
24
+ goproxy: ${{ secrets.GO_PROXY_URL }}
Dockerfile.nvidia
@@ -1,7 +1,9 @@
1
-
2
# Build node feature discovery
3
FROM golang:1.24 AS builder
4
+ARG GOPROXY
5
+ENV GOPROXY=$GOPROXY
6
+
7
# Get (cache) deps in a separate layer
8
COPY go.mod go.sum /go/node-feature-discovery/
9
COPY api/nfd/go.mod api/nfd/go.sum /go/node-feature-discovery/api/nfd/
0 commit comments