We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f96b3 commit d59eb15Copy full SHA for d59eb15
Makefile
@@ -119,6 +119,7 @@ container: blob
119
.PHONY: container-linux
120
container-linux:
121
docker buildx build --pull --output=type=$(OUTPUT_TYPE) --platform="linux/$(ARCH)" \
122
+ --provenance=false --sbom=false \
123
-t $(IMAGE_TAG)-linux-$(ARCH) --build-arg ARCH=$(ARCH) -f ./pkg/blobplugin/Dockerfile .
124
125
.PHONY: blob-container
hack/boilerplate/boilerplate.py
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env python
+#!/usr/bin/env python3
2
3
# Copyright 2019 The Kubernetes Authors.
4
#
@@ -207,4 +207,4 @@ def main():
207
return 0
208
209
if __name__ == "__main__":
210
- sys.exit(main())
+ sys.exit(main())
0 commit comments