From 7b365ed05cac328cc3c1ac6ad19675e952f7fc27 Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Thu, 25 Dec 2025 21:09:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(docker):=20remove=20unnecess?= =?UTF-8?q?ary=20build=20step=20for=20todo=20shared=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The @todo/shared package exports TypeScript source files directly (no build script). The backend's build process handles compiling these TypeScript files, so we don't need a separate build step. Fixes Docker error: ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL Command "build" not found 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/todo/apps/backend/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/todo/apps/backend/Dockerfile b/apps/todo/apps/backend/Dockerfile index 9f3fcc3cb..837090647 100644 --- a/apps/todo/apps/backend/Dockerfile +++ b/apps/todo/apps/backend/Dockerfile @@ -31,11 +31,7 @@ RUN pnpm install --frozen-lockfile # Build shared packages in dependency order RUN build-shared-packages.sh -# Build todo shared package -WORKDIR /app/apps/todo/packages/shared -RUN pnpm build - -# Build the backend +# Build the backend (includes compiling todo shared TypeScript) WORKDIR /app/apps/todo/apps/backend RUN pnpm build