Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni df808b8396
All checks were successful
Ruby Lint / lint (push) Successful in 20s
Release / docker (push) Successful in 4m54s
Ruby Test / test (push) Successful in 24s
piss
2025-06-28 16:33:58 -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/amd64",
]
}
target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common", "docker-metadata-action" ]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common", "docker-metadata-action-alpine" ]
}