Skip to content

Commit d7023c7

Browse files
chore(internal): fix MCP docker image builds in yarn projects
1 parent dbabdac commit d7023c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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/context.dev
3941

4042
FROM denoland/deno:alpine-2.7.1
4143

0 commit comments

Comments
 (0)