From e49936bedafa00497fc03e3905044f037dbe0ef4 Mon Sep 17 00:00:00 2001 From: Guido X Jansen Date: Sat, 7 Mar 2026 12:28:29 +0100 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2104235..f5d2ab8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,7 @@ COPY barazo-api/ ./barazo-api/ # Build workspace dependencies first, then API RUN pnpm --filter @singi-labs/lexicons build && \ - pnpm --filter @barazo/plugin-signatures build && \ + pnpm --filter @barazo/plugin-signatures run build:backend && \ pnpm --filter barazo-api build # Create standalone production deployment with resolved dependencies. -- 2.51.2