kubernaut/docker-bake.hcl
Ryan Cavicchioni 66e1a104c8
Some checks failed
Gitea Actions Demo / lint (push) Successful in 21s
Gitea Actions Demo / test (push) Successful in 13s
Gitea Actions Demo / docker (push) Failing after 25s
docker/bake-action v6.6.0
Use bake-action instead of build-and-push action.
2025-04-27 01:06:11 -05:00

19 lines
336 B
HCL

group "default" {
targets = [ "bookworm", "alpine" ]
}
target "_common" {
args = {
RUBY_VERSION = "3.4.3"
}
}
target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common" ]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common" ]
}