Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-agents-server-dockerfile-agents-mcp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@electric-ax/agents-server': patch
---

Fix Docker build by adding missing `agents-mcp` package to the Dockerfile.
4 changes: 4 additions & 0 deletions packages/agents-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ RUN corepack enable
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY patches ./patches
COPY packages/typescript-client/package.json ./packages/typescript-client/package.json
COPY packages/agents-mcp/package.json ./packages/agents-mcp/package.json
COPY packages/agents-runtime/package.json ./packages/agents-runtime/package.json
COPY packages/agents/package.json ./packages/agents/package.json
COPY packages/agents-server-conformance-tests/package.json ./packages/agents-server-conformance-tests/package.json
Expand All @@ -37,6 +38,9 @@ COPY tsconfig.base.json tsconfig.build.json ./
COPY packages/typescript-client ./packages/typescript-client
RUN pnpm --filter @electric-sql/client build

COPY packages/agents-mcp ./packages/agents-mcp
RUN pnpm --filter @electric-ax/agents-mcp build

COPY packages/agents-runtime ./packages/agents-runtime
RUN pnpm --filter @electric-ax/agents-runtime build

Expand Down
Loading