eza: update to 0.19.2
[void-pkg.git] / common / container / docker-bake.hcl
blobf290206f89e6afe06d6fd1dff3189da638a94b7f
1 variable "MIRROR" {
2 default = "https://repo-ci.voidlinux.org/"
5 target "docker-metadata-action" {}
7 target "_common" {
8 inherits = ["docker-metadata-action"]
9 dockerfile = "common/container/Containerfile"
10 no-cache-filter = ["bootstrap"]
11 cache-to = ["type=local,dest=/tmp/buildx-cache"]
12 cache-from = ["type=local,src=/tmp/buildx-cache"]
13 target = "image"
14 args = {
15 "MIRROR" = "${MIRROR}"
19 target "void-buildroot-glibc" {
20 inherits = ["_common"]
21 platforms = ["linux/amd64", "linux/386", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]
22 args = { "LIBC" = "glibc" }
25 target "void-buildroot-musl" {
26 inherits = ["_common"]
27 platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]
28 args = { "LIBC" = "musl" }