Files
kubernaut/docker-bake.hcl
Ryan Cavicchioni 6ec00632d1
Some checks failed
Ruby Lint / lint (push) Successful in 14s
Release / docker (push) Failing after 14m9s
Ruby Test / test (push) Successful in 17s
poop
2025-06-28 16:18:52 -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",
"linux/arm64",
]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common", "docker-metadata-action-alpine" ]
platforms = [
"linux/amd64",
]
}