From f04244fd69a1232a49992db2efec12d94f5b5ea6 Mon Sep 17 00:00:00 2001 From: Chakru <161002324+chakru-r@users.noreply.github.com> Date: Wed, 6 Aug 2025 19:34:01 +0530 Subject: [PATCH] fix(build): incorrect tag for full variant of datahub-ingestion image (#14344) --- docker/datahub-ingestion/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/datahub-ingestion/build.gradle b/docker/datahub-ingestion/build.gradle index 3d07067e39..ab5d3aebc1 100644 --- a/docker/datahub-ingestion/build.gradle +++ b/docker/datahub-ingestion/build.gradle @@ -41,7 +41,7 @@ docker { variants = [ "slim": [suffix: "", args: [RELEASE_VERSION: python_docker_version, APP_ENV: "slim"]], - "full": [suffix: "full", args: [RELEASE_VERSION: python_docker_version, APP_ENV: "full"]] + "full": [suffix: "-full", args: [RELEASE_VERSION: python_docker_version, APP_ENV: "full"]] ] // This task is intended to build the slim image //target 'ingestion-base-slim' //Review if this needs to be handled by bake