summaryrefslogtreecommitdiff
path: root/vendor/github.com/docker/distribution/docker-bake.hcl
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-02-08 12:09:28 +0000
committerGitHub <noreply@github.com>2022-02-08 12:09:28 +0000
commit5bcd9134ff0c2e3af740b388da2d91c70dd7456a (patch)
treeda911e481c93441cab97a20cfbab4318b87acded /vendor/github.com/docker/distribution/docker-bake.hcl
parent46d9a2570ad3eb4f1d7fe0928927e644ebe8a2a3 (diff)
downloadpodman-5bcd9134ff0c2e3af740b388da2d91c70dd7456a.tar.gz
podman-5bcd9134ff0c2e3af740b388da2d91c70dd7456a.tar.bz2
podman-5bcd9134ff0c2e3af740b388da2d91c70dd7456a.zip
Bump github.com/docker/distribution
Bumps [github.com/docker/distribution](https://github.com/docker/distribution) from 2.7.1+incompatible to 2.8.0+incompatible. - [Release notes](https://github.com/docker/distribution/releases) - [Commits](https://github.com/docker/distribution/compare/v2.7.1...v2.8.0) --- updated-dependencies: - dependency-name: github.com/docker/distribution dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/docker/distribution/docker-bake.hcl')
-rw-r--r--vendor/github.com/docker/distribution/docker-bake.hcl51
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/github.com/docker/distribution/docker-bake.hcl b/vendor/github.com/docker/distribution/docker-bake.hcl
new file mode 100644
index 000000000..e1457bb81
--- /dev/null
+++ b/vendor/github.com/docker/distribution/docker-bake.hcl
@@ -0,0 +1,51 @@
+group "default" {
+ targets = ["image-local"]
+}
+
+// Special target: https://github.com/docker/metadata-action#bake-definition
+target "docker-metadata-action" {
+ tags = ["registry:local"]
+}
+
+target "binary" {
+ target = "binary"
+ output = ["./bin"]
+}
+
+target "artifact" {
+ target = "artifacts"
+ output = ["./bin"]
+}
+
+target "artifact-all" {
+ inherits = ["artifact"]
+ platforms = [
+ "linux/amd64",
+ "linux/arm/v6",
+ "linux/arm/v7",
+ "linux/arm64",
+ "linux/ppc64le",
+ "linux/s390x"
+ ]
+}
+
+target "image" {
+ inherits = ["docker-metadata-action"]
+}
+
+target "image-local" {
+ inherits = ["image"]
+ output = ["type=docker"]
+}
+
+target "image-all" {
+ inherits = ["image"]
+ platforms = [
+ "linux/amd64",
+ "linux/arm/v6",
+ "linux/arm/v7",
+ "linux/arm64",
+ "linux/ppc64le",
+ "linux/s390x"
+ ]
+}