Skip to content

Commit 77d3dd2

Browse files
authored
Merge pull request #134 from shivakunv/exclude_attestation_manifests
Exclude attestation manifests (sbom, provenance) during the build usi…
2 parents 038f64c + c48138c commit 77d3dd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deployments/container/multi-arch.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
# limitations under the License.
1414

1515
PUSH_ON_BUILD ?= false
16-
DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD)
16+
ATTACH_ATTESTATIONS ?= false
17+
DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD) --provenance=$(ATTACH_ATTESTATIONS) --sbom=$(ATTACH_ATTESTATIONS)
1718
DOCKER_BUILD_PLATFORM_OPTIONS = --platform=linux/amd64,linux/arm64
1819

1920
$(BUILD_TARGETS): build-%: image-%

0 commit comments

Comments
 (0)