mirror of
https://github.com/Unleash/unleash.git
synced 2026-09-11 13:29:05 +00:00
f4ebc5d359
This stops using QEMU for building arm images, and should make the workflow go faster. Thanks Kris for the impetus for doing this.
16 lines
247 B
HCL
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
|
|
}
|
|
}
|