mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-06-26 18:18:24 +00:00
Remove provenance information from image manifests
Tools such as oc mirror do not support the provenence metadata added to the image manifests with newer docker buildx versions. This change disables the addition of provenance information. Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
a1e673800f
commit
4c944bb508
@ -6,6 +6,7 @@
|
|||||||
* Add `RUNTIME_CONFIG_OVERRIDE` (`--runtime-config-override`) to the `nvidia-ctk runtime configure` command and the toolkit container to allow for containerd runtime options to be set directly. This can be used to override the `SystemdCroup` option explicitly, for example.
|
* Add `RUNTIME_CONFIG_OVERRIDE` (`--runtime-config-override`) to the `nvidia-ctk runtime configure` command and the toolkit container to allow for containerd runtime options to be set directly. This can be used to override the `SystemdCroup` option explicitly, for example.
|
||||||
* Ensure consistent construction of libraries for CDI spec generation.
|
* Ensure consistent construction of libraries for CDI spec generation.
|
||||||
* Ensure that `nvidia-ctk cdi transform` creates specs with world-readable permissions.
|
* Ensure that `nvidia-ctk cdi transform` creates specs with world-readable permissions.
|
||||||
|
* Remove provenance information from published images.
|
||||||
|
|
||||||
## v1.15.0
|
## v1.15.0
|
||||||
|
|
||||||
|
@ -92,6 +92,7 @@ ARTIFACTS_ROOT ?= $(shell realpath --relative-to=$(CURDIR) $(DIST_DIR))
|
|||||||
$(BUILD_TARGETS): build-%: $(ARTIFACTS_ROOT)
|
$(BUILD_TARGETS): build-%: $(ARTIFACTS_ROOT)
|
||||||
DOCKER_BUILDKIT=1 \
|
DOCKER_BUILDKIT=1 \
|
||||||
$(DOCKER) $(BUILDX) build --pull \
|
$(DOCKER) $(BUILDX) build --pull \
|
||||||
|
--provenance=false --sbom=false \
|
||||||
$(DOCKER_BUILD_OPTIONS) \
|
$(DOCKER_BUILD_OPTIONS) \
|
||||||
$(DOCKER_BUILD_PLATFORM_OPTIONS) \
|
$(DOCKER_BUILD_PLATFORM_OPTIONS) \
|
||||||
--tag $(IMAGE) \
|
--tag $(IMAGE) \
|
||||||
|
Loading…
Reference in New Issue
Block a user