mirror of
https://github.com/MeexReay/minceraftOS.git
synced 2025-06-24 02:22:59 +03:00
21 lines
447 B
HCL
21 lines
447 B
HCL
variable "MIRROR" {
|
|
default = "https://repo-ci.voidlinux.org/"
|
|
}
|
|
|
|
target "docker-metadata-action" {}
|
|
|
|
target "_common" {
|
|
inherits = ["docker-metadata-action"]
|
|
dockerfile = "container/Containerfile"
|
|
cache-to = ["type=local,dest=/tmp/buildx-cache"]
|
|
cache-from = ["type=local,src=/tmp/buildx-cache"]
|
|
args = {
|
|
"MIRROR" = "${MIRROR}"
|
|
}
|
|
}
|
|
|
|
target "void-mklive" {
|
|
inherits = ["_common"]
|
|
platforms = ["linux/amd64", "linux/arm64"]
|
|
}
|