Skip to content

Commit d59eb15

Browse files
committed
fix: buildx issue with provenance disabled
1 parent e1f96b3 commit d59eb15

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ container: blob
119119
.PHONY: container-linux
120120
container-linux:
121121
docker buildx build --pull --output=type=$(OUTPUT_TYPE) --platform="linux/$(ARCH)" \
122+
--provenance=false --sbom=false \
122123
-t $(IMAGE_TAG)-linux-$(ARCH) --build-arg ARCH=$(ARCH) -f ./pkg/blobplugin/Dockerfile .
123124

124125
.PHONY: blob-container

hack/boilerplate/boilerplate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
# Copyright 2019 The Kubernetes Authors.
44
#
@@ -207,4 +207,4 @@ def main():
207207
return 0
208208

209209
if __name__ == "__main__":
210-
sys.exit(main())
210+
sys.exit(main())

0 commit comments

Comments
 (0)