From 717caa97fbe023a0d2f14b8e2cbad456954d6d2c Mon Sep 17 00:00:00 2001 From: JayMishra-github Date: Mon, 16 Feb 2026 10:47:40 -0800 Subject: [PATCH] fix: remove stderr suppression so install failures are visible in build logs Address review feedback: remove 2>/dev/null so that if the LanceDB native binary download fails, the error is visible in Docker build logs for debugging rather than silently swallowed. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8763cd264..dd6991257 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ RUN pnpm build # Ensure memory-lancedb extension dependencies are installed. # LanceDB has native bindings that may not be hoisted by pnpm in all configurations. -RUN pnpm install --filter @openclaw/memory-lancedb --prod --no-frozen-lockfile 2>/dev/null || true +RUN pnpm install --filter @openclaw/memory-lancedb --prod --no-frozen-lockfile || true # Force pnpm for UI build (Bun may fail on ARM/Synology architectures) ENV OPENCLAW_PREFER_PNPM=1 RUN pnpm ui:build