From d74922e8f62d82e1b41494cadf284132477cf652 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Thu, 26 Jun 2025 14:56:53 +0200 Subject: [PATCH] load --- Makefile | 4 ++-- docker-bake.hcl | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f087130862..3ae7fdc6aa 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ login_test_integration: login_test_integration_build login_test_acceptance_build_bake: @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: @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: @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: @echo -n "$(LOGIN_TAG)" diff --git a/docker-bake.hcl b/docker-bake.hcl index 4deec33def..fc93c09b5d 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -87,7 +87,6 @@ target "core-mock" { protos = "target:proto-files" } tags = ["${LOGIN_CORE_MOCK_TAG}"] - output = ["type=docker"] } variable "LOGIN_TEST_INTEGRATION_TAG" { @@ -100,7 +99,6 @@ target "login-test-integration" { login-pnpm = "target:login-pnpm" } tags = ["${LOGIN_TEST_INTEGRATION_TAG}"] - output = ["type=docker"] } variable "LOGIN_TEST_ACCEPTANCE_TAG" { @@ -113,7 +111,6 @@ target "login-test-acceptance" { login-pnpm = "target:login-pnpm" } tags = ["${LOGIN_TEST_ACCEPTANCE_TAG}"] - output = ["type=docker"] } variable "LOGIN_TAG" { @@ -130,5 +127,4 @@ target "login-standalone" { login-client = "target:login-client" } tags = ["${LOGIN_TAG}"] - output = ["type=docker"] }