This commit is contained in:
Elio Bischof
2025-06-13 03:22:15 +02:00
parent b70c095c6e
commit 46ebca1b54

View File

@@ -23,6 +23,9 @@ target "login-test-unit" {
login-dev-base = "target:login-dev-base" login-dev-base = "target:login-dev-base"
login-client = "target:login-client" login-client = "target:login-client"
} }
output= {
type = "docker"
}
tags = ["${LOGIN_TEST_UNIT_TAG}"] tags = ["${LOGIN_TEST_UNIT_TAG}"]
} }
@@ -35,7 +38,9 @@ target "login-lint" {
contexts = { contexts = {
login-dev-base = "target:login-dev-base" login-dev-base = "target:login-dev-base"
} }
load = true output= {
type = "docker"
}
tags = ["${LOGIN_LINT_TAG}"] tags = ["${LOGIN_LINT_TAG}"]
} }
@@ -90,6 +95,9 @@ target "login-test-integration" {
contexts = { contexts = {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
output= {
type = "docker"
}
tags = ["${LOGIN_TEST_INTEGRATION_TAG}"] tags = ["${LOGIN_TEST_INTEGRATION_TAG}"]
} }
@@ -102,6 +110,9 @@ target "login-test-acceptance" {
contexts = { contexts = {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
output= {
type = "docker"
}
tags = ["${LOGIN_TEST_ACCEPTANCE_TAG}"] tags = ["${LOGIN_TEST_ACCEPTANCE_TAG}"]
} }