Skip to content

Commit a6fd091

Browse files
chore(internal): fix MCP Dockerfiles so they can be built without buildkit
1 parent f58a313 commit a6fd091

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mcp-server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ FROM node:24-alpine
5252
COPY --from=deno_installer /deno /usr/local/bin/deno
5353

5454
# Add in shared libraries needed by Deno
55-
COPY --from=cc --chown=root:root --chmod=755 /lib/*-linux-gnu/* /usr/local/lib/
56-
COPY --from=cc --chown=root:root --chmod=755 /lib/ld-linux-* /lib/
55+
COPY --from=cc /lib/*-linux-gnu/* /usr/local/lib/
56+
COPY --from=cc /lib/ld-linux-* /lib/
5757

5858
RUN mkdir /lib64 && ln -s /usr/local/lib/ld-linux-* /lib64/
5959
ENV LD_LIBRARY_PATH=/usr/lib:/usr/local/lib

0 commit comments

Comments
 (0)