[docker-build] ensure provenance is disabled during image builds#1940
Merged
[docker-build] ensure provenance is disabled during image builds#1940
Conversation
Signed-off-by: Tariq Ibrahim <tibrahim@nvidia.com>
cdesiniotis
approved these changes
Nov 26, 2025
Contributor
Author
|
/cherry-pick release-25.10 |
Contributor
|
🤖 Backport PR created for |
This was referenced Dec 2, 2025
rapids-bot bot
pushed a commit
to rapidsai/docker
that referenced
this pull request
Dec 2, 2025
Closes #820 *(description copied from #820 (comment) `build-*-manifest` CI jobs are failing like this: ```text docker.io/rapidsai/staging:docker-cuvs-bench-820-26.02a-cuda13-py3.10-amd64 is a manifest list Error: Process completed with exit code 1. ``` ([build link](https://github.com/rapidsai/docker/actions/runs/19864919436/job/56926457521?pr=820#step:4:23)) Looks like in newer versions of `docker`, builds create manifest lists by default instead of single image builds: * NVIDIA/gpu-operator#1940 * NVIDIA/k8s-driver-manager#132 * docker/build-push-action#1339 (comment) This opts out of that using the configuration option added in docker/build-push-action#1343 It also updates all `pre-commit` hooks, to avoid needing another CI run for #820 Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) URL: #821
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The GitHub runners have now started using a newer version of docker-ce where
--provenanceis enabled by default. This results in the native-arch image build creating a docker manifest list instead of a single image. This causes issues in our multiarch builds as we need to create a docker manifest out of the two images built for the amd64 and arm64 architectures.With this fix, we should no longer see errors like the one below: