Files
unleash/docker-bake.hcl
Christopher Kolstad f4ebc5d359 task: Update workflow to use native runners and dockerbake (#11535)
This stops using QEMU for building arm images, and should make the
workflow go faster.
Thanks Kris for the impetus for doing this.
2026-03-11 10:47:00 +01:00

16 lines
247 B
HCL

variable "NODE_VERSION" {
default = "22.22-alpine3.23"
}
target "docker-metadata-action" {}
target "image" {
inherits = ["docker-metadata-action"]
context = "."
dockerfile = "Dockerfile"
args = {
NODE_VERSION = NODE_VERSION
}
}