Skip to content
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
arch:
- amd64
# - arm64
runs-on: ubuntu-latest
runs-on: linux-${{ matrix.arch }}-cpu4
steps:
- uses: actions/checkout@v4
name: Check out code
Expand Down Expand Up @@ -57,10 +57,14 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Go Proxy
id: setup-go-proxy
uses: nv-gha-runners/setup-artifactory-go-proxy@main
- name: Build image
env:
IMAGE_NAME: ghcr.io/${LOWERCASE_REPO_OWNER}/nvidia-sandbox-device-plugin
VERSION: ${COMMIT_SHORT_SHA}-${{ matrix.arch }}
GOPROXY: ${{ steps.setup-go-proxy.outputs.goproxy-url }}
DOCKER_BUILD_PLATFORM_OPTIONS: "--platform=linux/${{ matrix.arch }}"
run: |
echo "${VERSION}"
Expand Down
3 changes: 3 additions & 0 deletions deployments/container/Dockerfile.distroless
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ FROM nvcr.io/nvidia/cuda:13.0.2-base-ubi9 as builder

RUN yum install -y wget make gcc

ARG GOPROXY="https://proxy.golang.org,direct"
ENV GOPROXY=$GOPROXY

ARG GOLANG_VERSION=1.25.6
RUN set -eux; \
\
Expand Down
Loading