Skip to content

Commit 0fe7554

Browse files
committed
Remove libc6-compat addition in Dockerfile
1 parent 31193bb commit 0fe7554

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ RUN if [ -z "$EXECUTABLE_NAME" ]; then \
1717
echo "ERROR: EXECUTABLE_NAME build argument is required" && exit 1; \
1818
fi
1919

20-
RUN apk add --no-cache libc6-compat
21-
2220
# Copy the contents of the publish directory to '/mcp-server' and set it as the working directory
2321
RUN mkdir -p /mcp-server
2422
COPY ${PUBLISH_DIR} /mcp-server/
@@ -31,7 +29,7 @@ RUN ls -la
3129
RUN if [ ! -f $EXECUTABLE_NAME ]; then \
3230
echo "ERROR: $EXECUTABLE_NAME executable does not exist" && exit 1; \
3331
fi
34-
32+
3533
# Copy the server binary to a known location and make it executable
3634
COPY ${PUBLISH_DIR}/${EXECUTABLE_NAME} server-binary
3735
RUN chmod +x server-binary && test -x server-binary

0 commit comments

Comments
 (0)