You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-03 07:22:32 +03:00
31 lines
771 B
HCL
31 lines
771 B
HCL
// This is what is baked by GitHub Actions
|
|
group "default" { targets = ["regular", "debug", "syn2mas"] }
|
|
|
|
// Targets filled by GitHub Actions: one for the regular tag, one for the debug tag
|
|
target "docker-metadata-action" {}
|
|
target "docker-metadata-action-debug" {}
|
|
target "docker-metadata-action-syn2mas" {}
|
|
|
|
// This sets the platforms and is further extended by GitHub Actions to set the
|
|
// output and the cache locations
|
|
target "base" {
|
|
platforms = [
|
|
"linux/amd64",
|
|
"linux/arm64",
|
|
]
|
|
}
|
|
|
|
target "regular" {
|
|
inherits = ["base", "docker-metadata-action"]
|
|
}
|
|
|
|
target "debug" {
|
|
inherits = ["base", "docker-metadata-action-debug"]
|
|
target = "debug"
|
|
}
|
|
|
|
target "syn2mas" {
|
|
inherits = ["base", "docker-metadata-action-syn2mas"]
|
|
context = "./tools/syn2mas"
|
|
}
|