kubernaut/docker-bake.hcl
Ryan Cavicchioni ba7dbf279d
Some checks failed
Gitea Actions Demo / lint (push) Successful in 22s
Gitea Actions Demo / test (push) Successful in 12s
Gitea Actions Demo / docker (push) Failing after 2m10s
docker/bake-action v6.6.0
Use bake-action instead of build-and-push action.
2025-04-27 10:15:25 -05:00

21 lines
430 B
HCL

group "default" {
targets = [ "bookworm", "alpine" ]
}
target "_common" {
args = {
RUBY_VERSION = "3.4.3"
}
}
target "bookworm" {
dockerfile = "./dockerfiles/bookworm.Dockerfile"
inherits = [ "_common" ]
tags = [ "git.kill0.net/ryanc/kubernaut" ]
}
target "alpine" {
dockerfile = "./dockerfiles/alpine.Dockerfile"
inherits = [ "_common" ]
tags = [ "git.kill0.net/ryanc/kubernaut" ]
}