Skip to content

Commit

Permalink
Merge pull request #18 from shivakunv/exclude_attestation_manifests
Browse files Browse the repository at this point in the history
Exclude attestation manifests (sbom, provenance) during the build usi…
  • Loading branch information
cdesiniotis committed Jul 1, 2024
2 parents 1dbc589 + f849c79 commit c809fab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deployments/container/multi-arch.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
# limitations under the License.

PUSH_ON_BUILD ?= false
DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD)
ATTACH_ATTESTATIONS ?= false
DOCKER_BUILD_OPTIONS = --output=type=image,push=$(PUSH_ON_BUILD) --provenance=$(ATTACH_ATTESTATIONS) --sbom=$(ATTACH_ATTESTATIONS)
DOCKER_BUILD_PLATFORM_OPTIONS = --platform=linux/amd64,linux/arm64

REGCTL ?= regctl
Expand Down

0 comments on commit c809fab

Please sign in to comment.