Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/netop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ jobs:
registry-username: ${{ secrets.NVCR_USERNAME }}
registry-token: ${{ secrets.NVCR_TOKEN }}
cicd-gh-token: ${{ secrets.GH_TOKEN_NVIDIA_CI_CD }}
goproxy: ${{ secrets.GO_PROXY_URL }}
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
# Build the image
FROM golang:1.24 as builder

ARG GOPROXY
ENV GOPROXY=$GOPROXY

WORKDIR /workspace
# Copy the Go Modules manifests
COPY go.mod go.mod
Expand Down
Loading