Skip to content

Commit e75ca0f

Browse files
chore(internal): fix MCP docker image builds in yarn projects
1 parent 81b19bd commit e75ca0f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/mcp-server/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ COPY . .
3535

3636
# Install all dependencies and build everything
3737
RUN yarn install --frozen-lockfile && \
38-
yarn build
38+
yarn build && \
39+
# Remove the symlink to the SDK so it doesn't interfere with the explicit COPY below
40+
rm -Rf packages/mcp-server/node_modules/scan-documents
3941

4042
FROM denoland/deno:alpine-2.7.1
4143

0 commit comments

Comments
 (0)