mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 02:59:40 +02:00
🐛 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:
parent
111e7dd02c
commit
7b365ed05c
1 changed files with 1 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue