Files
authelia-controller/docker-bake.hcl
Dreaded_X 948473c171
All checks were successful
Build and deploy / build (push) Successful in 9m40s
chore: Update workflow
2025-12-22 23:44:35 +01:00

24 lines
520 B
HCL

variable "TAG_BASE" {}
variable "RELEASE_VERSION" {}
group "default" {
targets = ["authelia-controller", "manifests"]
}
target "docker-metadata-action" {}
target "authelia-controller" {
inherits = ["docker-metadata-action"]
context = "./"
dockerfile = "Dockerfile"
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
target = "runtime"
}
target "manifests" {
context = "./"
dockerfile = "Dockerfile"
target = "manifests"
output = [{ type = "cacheonly" }, "manifests"]
}