diff --git a/Makefile b/Makefile index dc2587bd63..9fd43e727d 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ export LOGIN_TEST_ACCEPTANCE_SAMLIDP_TAG := login-test-acceptance-samlidp:${DOCK export POSTGRES_TAG := postgres:17.0-alpine3.19 export GOLANG_TAG := golang:1.24-alpine export ZITADEL_TAG ?= ghcr.io/zitadel/zitadel:v3.3.0 -export CORE_MOCK_TAG := core-mock:${DOCKER_METADATA_OUTPUT_VERSION} +export CORE_MOCK_TAG := login-core-mock:${DOCKER_METADATA_OUTPUT_VERSION} .PHONY: login-help login-help: @@ -50,10 +50,10 @@ login-test-unit: $(LOGIN_BAKE_CLI_WITH_COMMON_ARGS) login-test-unit login-test-integration-build: - $(LOGIN_BAKE_CLI_WITH_COMMON_ARGS) core-mock login-test-integration login-standalone + $(LOGIN_BAKE_CLI_WITH_COMMON_ARGS) login-core-mock login-test-integration login-standalone login-test-integration-dev: login-test-integration-cleanup - $(LOGIN_BAKE_CLI_WITH_COMMON_ARGS) core-mock && docker compose --file $(LOGIN_DIR)apps/login-test-integration/docker-compose.yaml run --service-ports --rm core-mock + $(LOGIN_BAKE_CLI_WITH_COMMON_ARGS) login-core-mock && docker compose --file $(LOGIN_DIR)apps/login-test-integration/docker-compose.yaml run --service-ports --rm login-core-mock login-test-integration-run: login-test-integration-cleanup docker compose --file $(LOGIN_DIR)apps/login-test-integration/docker-compose.yaml run --rm integration diff --git a/docker-bake.hcl b/docker-bake.hcl index 348dd2f76c..4553940d44 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -16,7 +16,7 @@ target "typescript-proto-client" { output = ["type=docker"] } -# proto-files is only used to build core-mock against which the integration tests run. +# proto-files is only used to build login-core-mock against which the integration tests run. # To build the proto-client, we use buf to generate and download the client code directly. # It is not login-prefixed, so it is easily extendable. # To extend this bake-file.hcl, set the context of all login-prefixed targets to a different directory.