We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31193bb commit 0fe7554Copy full SHA for 0fe7554
Dockerfile
@@ -17,8 +17,6 @@ RUN if [ -z "$EXECUTABLE_NAME" ]; then \
17
echo "ERROR: EXECUTABLE_NAME build argument is required" && exit 1; \
18
fi
19
20
-RUN apk add --no-cache libc6-compat
21
-
22
# Copy the contents of the publish directory to '/mcp-server' and set it as the working directory
23
RUN mkdir -p /mcp-server
24
COPY ${PUBLISH_DIR} /mcp-server/
@@ -31,7 +29,7 @@ RUN ls -la
31
29
RUN if [ ! -f $EXECUTABLE_NAME ]; then \
32
30
echo "ERROR: $EXECUTABLE_NAME executable does not exist" && exit 1; \
33
34
+
35
# Copy the server binary to a known location and make it executable
36
COPY ${PUBLISH_DIR}/${EXECUTABLE_NAME} server-binary
37
RUN chmod +x server-binary && test -x server-binary
0 commit comments