Skip to content

Commit 2bb696b

Browse files
committed
fix: buildx issue with provenance disabled
1 parent 4365dd9 commit 2bb696b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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())

test/external-e2e/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ PROJECT_ROOT=$(git rev-parse --show-toplevel)
2020
DRIVER="test"
2121

2222
install_ginkgo () {
23-
apt update -y
24-
apt install -y golang-ginkgo-dev
23+
go install github.com/onsi/ginkgo/[email protected]
2524
}
2625

2726
setup_e2e_binaries() {

0 commit comments

Comments
 (0)