From 5445e3f2130d332da8d1d776c178fd7bb63ff9a7 Mon Sep 17 00:00:00 2001 From: IvanHunters Date: Wed, 29 Apr 2026 23:46:45 +0300 Subject: [PATCH] fix(dashboard): use correct APP_VERSION build-arg name for console image Containerfile expects ARG APP_VERSION, not COZYSTACK_VERSION Signed-off-by: IvanHunters --- packages/system/dashboard/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/dashboard/Makefile b/packages/system/dashboard/Makefile index 3907cf15..b24ddb30 100644 --- a/packages/system/dashboard/Makefile +++ b/packages/system/dashboard/Makefile @@ -23,7 +23,7 @@ image-console: --cache-from type=registry,ref=$(REGISTRY)/cozystack-ui:latest \ --cache-to type=inline \ --metadata-file images/console.json \ - --build-arg COZYSTACK_VERSION=$(COZYSTACK_VERSION) \ + --build-arg APP_VERSION=$(COZYSTACK_VERSION) \ --push=$(PUSH) \ --label "org.opencontainers.image.source=https://github.com/cozystack/cozystack-ui" \ --load=$(LOAD)