🐛 fix(docker): remove unnecessary build step for todo shared package

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 <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-25 21:09:27 +01:00
parent 111e7dd02c
commit 7b365ed05c

View file

@ -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