23 lines
474 B
HCL
23 lines
474 B
HCL
group "default" {
|
|
targets = [ "bookworm", "alpine" ]
|
|
}
|
|
|
|
target "docker-metadata-action" {}
|
|
target "docker-metadata-action-alpine" {}
|
|
|
|
target "_common" {
|
|
args = {
|
|
RUBY_VERSION = "3.4.3"
|
|
}
|
|
}
|
|
|
|
target "bookworm" {
|
|
dockerfile = "./dockerfiles/bookworm.Dockerfile"
|
|
inherits = [ "_common", "docker-metadata-action" ]
|
|
}
|
|
|
|
target "alpine" {
|
|
dockerfile = "./dockerfiles/alpine.Dockerfile"
|
|
inherits = [ "_common", "docker-metadata-action-alpine" ]
|
|
}
|