diff --git a/CHANGELOG.md b/CHANGELOG.md index 66ab1550b..3b27d9e6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. * Ensure consistent construction of libraries for CDI spec generation. * Ensure that `nvidia-ctk cdi transform` creates specs with world-readable permissions. +* Remove provenance information from published images. ## v1.15.0 diff --git a/deployments/container/Makefile b/deployments/container/Makefile index 9bc2d8d9e..bd990bd13 100644 --- a/deployments/container/Makefile +++ b/deployments/container/Makefile @@ -92,6 +92,7 @@ ARTIFACTS_ROOT ?= $(shell realpath --relative-to=$(CURDIR) $(DIST_DIR)) $(BUILD_TARGETS): build-%: $(ARTIFACTS_ROOT) DOCKER_BUILDKIT=1 \ $(DOCKER) $(BUILDX) build --pull \ + --provenance=false --sbom=false \ $(DOCKER_BUILD_OPTIONS) \ $(DOCKER_BUILD_PLATFORM_OPTIONS) \ --tag $(IMAGE) \