Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni 653167adb5
Some checks failed
Ruby Lint / lint (push) Successful in 16s
Ruby Test / test (push) Successful in 31s
Release / docker (push) Has been cancelled
add arm64 build target
2025-06-28 13:12:17 -05:00

27 lines
544 B
HCL

group "default" {
targets = [ "bookworm", "alpine" ]
}
target "docker-metadata-action" {}
target "docker-metadata-action-alpine" {}
target "_common" {
args = {
RUBY_VERSION = "3.4.4"
}
platforms = [
"linux/amd64",
"linux/arm64",
]
}
target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common", "docker-metadata-action" ]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common", "docker-metadata-action-alpine" ]
}