24 lines
567 B
HCL
24 lines
567 B
HCL
target "docker-metadata-action" {}
|
|
target "docker-metadata-action-alpine" {}
|
|
|
|
group "default" {
|
|
targets = [ "bookworm", "alpine" ]
|
|
}
|
|
target "_common" {
|
|
args = {
|
|
RUBY_VERSION = "3.4.3"
|
|
}
|
|
}
|
|
|
|
target "bookworm" {
|
|
dockerfile = "./dockerfiles/bookworm.Dockerfile"
|
|
inherits = [ "_common", "docker-metadata-action" ]
|
|
tags = [ "git.kill0.net/ryanc/kubernaut" ]
|
|
}
|
|
|
|
target "alpine" {
|
|
dockerfile = "./dockerfiles/alpine.Dockerfile"
|
|
inherits = [ "_common", "docker-metadata-action-alpine" ]
|
|
tags = [ "git.kill0.net/ryanc/kubernaut" ]
|
|
}
|