From cd9e2eee2e222ccd74d51b2d5167352e3af4c7cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 21 Nov 2025 15:01:16 +0100 Subject: [PATCH] fix: use legacy Docker builder for RunPod compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set DOCKER_BUILDKIT=0 to use legacy builder - BuildKit has permission issues in RunPod's containerized environment - Legacy builder works reliably with RunPod's security constraints 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- scripts/prepare-template.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/prepare-template.sh b/scripts/prepare-template.sh index 14cefc1..0ffd15a 100644 --- a/scripts/prepare-template.sh +++ b/scripts/prepare-template.sh @@ -125,6 +125,9 @@ build_docker_images() { cd /workspace/ai + # Use legacy builder (buildkit has permission issues in RunPod) + export DOCKER_BUILDKIT=0 + # Build orchestrator log_info "Building orchestrator..." docker compose -f compose.yaml build orchestrator