From d72df5e2f9346e423ac01dfb252ff2dee522c6ae Mon Sep 17 00:00:00 2001 From: 0xh3rman <119309671+0xh3rman@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:52:40 +0900 Subject: [PATCH 1/2] fix build-base-image locally --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index faef0332c..eec1ee133 100644 --- a/justfile +++ b/justfile @@ -43,7 +43,7 @@ generate-models: install-typeshare @cd core && cargo run --package generate --bin generate android ../gemcore/src/main/kotlin/com/wallet/core build-base-image: - DOCKER_BUILDKIT=1 DOCKER_DEFAULT_PLATFORM=linux/amd64 docker build --platform linux/amd64 --no-cache -t gem-android-base .. + DOCKER_BUILDKIT=1 DOCKER_DEFAULT_PLATFORM={{DOCKER_PLATFORM}} docker build --platform {{DOCKER_PLATFORM}} --no-cache -t gem-android-base {{justfile_directory()}} TAG := env("TAG", "main") BUILD_MODE := env("BUILD_MODE", "") From 0840eab63cb3c502366f03c96168d7e98fa4ed80 Mon Sep 17 00:00:00 2001 From: 0xh3rman <119309671+0xh3rman@users.noreply.github.com> Date: Thu, 5 Feb 2026 13:15:23 +0900 Subject: [PATCH 2/2] remove not used BUILD_MODE --- justfile | 1 - 1 file changed, 1 deletion(-) diff --git a/justfile b/justfile index eec1ee133..ce9626334 100644 --- a/justfile +++ b/justfile @@ -46,7 +46,6 @@ build-base-image: DOCKER_BUILDKIT=1 DOCKER_DEFAULT_PLATFORM={{DOCKER_PLATFORM}} docker build --platform {{DOCKER_PLATFORM}} --no-cache -t gem-android-base {{justfile_directory()}} TAG := env("TAG", "main") -BUILD_MODE := env("BUILD_MODE", "") BUNDLE_TASK := env("BUNDLE_TASK", "clean :app:bundleGoogleRelease assembleUniversalRelease") DOCKER_PLATFORM := env("DOCKER_PLATFORM", "linux/amd64") OUTPUTS_DIR := env("OUTPUTS_DIR", "")