This commit is contained in:
Elio Bischof
2025-07-23 12:48:47 +02:00
parent 394fd44b44
commit 5a7b267e7d
2 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
variable "LOGIN_TAG" {
default = "zitadel-login:local"
}
group "default" {
targets = ["login-standalone"]
}
# The release target is overwritten in docker-bake-release.hcl # The release target is overwritten in docker-bake-release.hcl
# It makes sure the image is built for multiple platforms. # It makes sure the image is built for multiple platforms.
# By default the platforms property is empty, so images are only built for the current bake runtime platform. # By default the platforms property is empty, so images are only built for the current bake runtime platform.

View File

@@ -1,7 +1,6 @@
# login-standalone can extend the login-standalone target in apps/login/docker-bake.hcl # login-standalone should be extended by the login-standalone target in apps/login/docker-bake.hcl
target "login-standalone" { target "login-standalone" {
context = . dockerfile = "dockerfiles/login.Dockerfile"
dockerfile = dockerfiles/login.Dockerfile
} }
target "login-standalone-out" { target "login-standalone-out" {
@@ -11,3 +10,4 @@ target "login-standalone-out" {
"type=local,dest=.artifacts/login" "type=local,dest=.artifacts/login"
] ]
} }