From ccbb9cc64218e95d11327391f75a7368b88ba29b Mon Sep 17 00:00:00 2001 From: linnea Date: Mon, 10 Aug 2026 16:54:38 +0800 Subject: [PATCH] fix(build): default OPENCLAW_BASE_VERSION to latest for standalone builds The hardcoded tag 20260423-8359cbc does not exist in the cn-hangzhou registry, causing make install-embedded to fail with 'not found' on fresh environments. Default to latest (already available in the registry), matching the comment above the variable. Versioned base images can still be selected by overriding OPENCLAW_BASE_VERSION. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea5cb1750..b47f7d3a5 100644 --- a/Makefile +++ b/Makefile @@ -139,7 +139,7 @@ build-openclaw-base: ## Build OpenClaw base image # build targets use the locally-built openclaw-base; push targets use the registry image # OPENCLAW_BASE_VERSION controls which base image tag manager/worker builds depend on. # Default: latest (for standalone builds). Override to use a versioned base (e.g. in build-all). -OPENCLAW_BASE_VERSION ?= 20260423-8359cbc +OPENCLAW_BASE_VERSION ?= latest OPENCLAW_BASE_BUILD_ARG = --build-arg OPENCLAW_BASE_IMAGE=$(OPENCLAW_BASE_IMAGE):$(OPENCLAW_BASE_VERSION) OPENCLAW_BASE_PUSH_ARG = --build-arg OPENCLAW_BASE_IMAGE=$(OPENCLAW_BASE_IMAGE):$(OPENCLAW_BASE_VERSION)