Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni 5fb1f2fcc7
Some checks failed
Ruby Lint / lint (push) Successful in 1m2s
Ruby Test / test (push) Successful in 15s
Release / docker (push) Failing after 3m28s
crap
2025-06-28 17:51:59 -05:00

26 lines
521 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/arm64",
]
}
target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common", "docker-metadata-action" ]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common", "docker-metadata-action-alpine" ]
}