This commit is contained in:
Elio Bischof
2025-06-26 14:56:53 +02:00
parent ef0dea08e7
commit d74922e8f6
2 changed files with 2 additions and 6 deletions

View File

@@ -76,7 +76,7 @@ login_test_integration: login_test_integration_build
login_test_acceptance_build_bake: login_test_acceptance_build_bake:
@echo "Building login test acceptance images as defined in the docker-bake.hcl" @echo "Building login test acceptance images as defined in the docker-bake.hcl"
$(LOGIN_BAKE_CLI_WITH_ARGS) login-test-acceptance login-standalone $(LOGIN_BAKE_CLI_WITH_ARGS) login-test-acceptance login-standalone --load
login_test_acceptance_build_compose: login_test_acceptance_build_compose:
@echo "Building login test acceptance images as defined in the docker-compose.yaml" @echo "Building login test acceptance images as defined in the docker-compose.yaml"
@@ -116,7 +116,7 @@ login_quality: login_lint login_test_unit login_test_integration
login_standalone_build: login_standalone_build:
@echo "Building the login standalone docker image with tag: $(LOGIN_TAG)" @echo "Building the login standalone docker image with tag: $(LOGIN_TAG)"
$(LOGIN_BAKE_CLI_WITH_ARGS) --load login-standalone $(LOGIN_BAKE_CLI_WITH_ARGS) login-standalone --load
login_standalone_build_tag: login_standalone_build_tag:
@echo -n "$(LOGIN_TAG)" @echo -n "$(LOGIN_TAG)"

View File

@@ -87,7 +87,6 @@ target "core-mock" {
protos = "target:proto-files" protos = "target:proto-files"
} }
tags = ["${LOGIN_CORE_MOCK_TAG}"] tags = ["${LOGIN_CORE_MOCK_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_TEST_INTEGRATION_TAG" { variable "LOGIN_TEST_INTEGRATION_TAG" {
@@ -100,7 +99,6 @@ target "login-test-integration" {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
tags = ["${LOGIN_TEST_INTEGRATION_TAG}"] tags = ["${LOGIN_TEST_INTEGRATION_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_TEST_ACCEPTANCE_TAG" { variable "LOGIN_TEST_ACCEPTANCE_TAG" {
@@ -113,7 +111,6 @@ target "login-test-acceptance" {
login-pnpm = "target:login-pnpm" login-pnpm = "target:login-pnpm"
} }
tags = ["${LOGIN_TEST_ACCEPTANCE_TAG}"] tags = ["${LOGIN_TEST_ACCEPTANCE_TAG}"]
output = ["type=docker"]
} }
variable "LOGIN_TAG" { variable "LOGIN_TAG" {
@@ -130,5 +127,4 @@ target "login-standalone" {
login-client = "target:login-client" login-client = "target:login-client"
} }
tags = ["${LOGIN_TAG}"] tags = ["${LOGIN_TAG}"]
output = ["type=docker"]
} }