This commit is contained in:
Elio Bischof
2025-06-13 03:14:52 +02:00
parent 1c2f9af99c
commit b70c095c6e

View File

@@ -9,7 +9,7 @@ target "login-pnpm" {
target "login-dev-base" { target "login-dev-base" {
dockerfile = "dockerfiles/login-dev-base.Dockerfile" dockerfile = "dockerfiles/login-dev-base.Dockerfile"
contexts = { contexts = {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
} }
@@ -19,10 +19,10 @@ variable "LOGIN_TEST_UNIT_TAG" {
target "login-test-unit" { target "login-test-unit" {
dockerfile = "dockerfiles/login-test-unit.Dockerfile" dockerfile = "dockerfiles/login-test-unit.Dockerfile"
contexts = { contexts = {
login-dev-base = "target:login-dev-base" login-dev-base = "target:login-dev-base"
login-client = "target:login-client" login-client = "target:login-client"
} }
tags = ["${LOGIN_TEST_UNIT_TAG}"] tags = ["${LOGIN_TEST_UNIT_TAG}"]
} }
@@ -35,6 +35,7 @@ target "login-lint" {
contexts = { contexts = {
login-dev-base = "target:login-dev-base" login-dev-base = "target:login-dev-base"
} }
load = true
tags = ["${LOGIN_LINT_TAG}"] tags = ["${LOGIN_LINT_TAG}"]
} }
@@ -45,7 +46,7 @@ variable "LOGIN_CLIENT_TAG" {
target "login-client" { target "login-client" {
dockerfile = "dockerfiles/login-client.Dockerfile" dockerfile = "dockerfiles/login-client.Dockerfile"
contexts = { contexts = {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
typescript-proto-client = "target:typescript-proto-client" typescript-proto-client = "target:typescript-proto-client"
} }
tags = ["${LOGIN_CLIENT_TAG}"] tags = ["${LOGIN_CLIENT_TAG}"]
@@ -89,7 +90,7 @@ target "login-test-integration" {
contexts = { contexts = {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
tags = ["${LOGIN_TEST_INTEGRATION_TAG}"] tags = ["${LOGIN_TEST_INTEGRATION_TAG}"]
} }
variable "LOGIN_TEST_ACCEPTANCE_TAG" { variable "LOGIN_TEST_ACCEPTANCE_TAG" {