From bb547888bff0e2572fdf5bbca78f5cf0222e4465 Mon Sep 17 00:00:00 2001 From: MCP Admin Date: Sat, 13 Jun 2026 02:20:00 +0000 Subject: [PATCH] Add build-bin feature to Dockerfile so binary is built --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e71c27..b540db4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,8 @@ COPY assets/ ./assets/ # - runtime-server: stdio MCP transport # - http-server: HTTP + HTML interface # - advanced-docx: advanced document operations -RUN cargo build --release --features "runtime-server http-server advanced-docx" +# - build-bin: enables building the docx-mcp binary +RUN cargo build --release --features "runtime-server http-server advanced-docx build-bin" # ============================================================ # Runtime Stage