From bd403641e1d35b64ce64ca005eb24f0dba0cdb5d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 6 May 2026 20:32:12 +0200 Subject: [PATCH] fix(sandcastle): remove corepack prepare from Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Align with the working Dockerfile from sap-ai-provider. The container does not need explicit pnpm setup — corepack in node:24 handles it on demand when pnpm is invoked. --- .sandcastle/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/.sandcastle/Dockerfile b/.sandcastle/Dockerfile index 06efa17e..e7c49128 100644 --- a/.sandcastle/Dockerfile +++ b/.sandcastle/Dockerfile @@ -21,8 +21,6 @@ RUN npm install -g \ @mariozechner/pi-coding-agent \ opencode-ai -RUN corepack enable && corepack prepare pnpm@latest --activate - # Rename the base image's "node" user to "agent" and align UID/GID. # Default 1001 matches GitHub Actions runner UID (ubuntu-latest since May 2025). # On macOS, build with --build-arg AGENT_UID=$(id -u) to match host UID. -- 2.43.0