Barazo AppView backend barazo.forum

fix(docker): build only plugin backend in API image (#157)

Use build:backend instead of build for plugin-signatures to avoid
React type resolution errors. The API only needs plugin backend code
(hooks, routes); frontend components are loaded by barazo-web.

authored by

Guido X Jansen and committed by
GitHub
e49936be 087b1353

+1 -1
+1 -1
Dockerfile
··· 47 47 48 48 # Build workspace dependencies first, then API 49 49 RUN pnpm --filter @singi-labs/lexicons build && \ 50 - pnpm --filter @barazo/plugin-signatures build && \ 50 + pnpm --filter @barazo/plugin-signatures run build:backend && \ 51 51 pnpm --filter barazo-api build 52 52 53 53 # Create standalone production deployment with resolved dependencies.