Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni fafe0bc0bd
Some checks failed
Ruby Lint / lint (push) Successful in 15s
Release / docker (push) Failing after 6m1s
Ruby Test / test (push) Successful in 15s
fart
2025-06-28 16:12:05 -05:00

30 lines
591 B
HCL

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