Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni 19dbc725de
All checks were successful
Ruby Lint / lint (push) Successful in 1m34s
Ruby Test / test (push) Successful in 14s
feat: update to Debian Trixie
2025-08-14 22:28:47 -05:00

27 lines
538 B
HCL

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