From f172327e06f05887c589b13fc43187c9dc502ad4 Mon Sep 17 00:00:00 2001 From: Adam Holt Date: Fri, 6 Feb 2026 16:24:01 +0100 Subject: [PATCH] Expose HTTP port --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f804c03aa..6ff2babb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,8 @@ LABEL io.modelcontextprotocol.server.name="io.github.github/github-mcp-server" WORKDIR /server # Copy the binary from the build stage COPY --from=build /bin/github-mcp-server . +# Expose the default port +EXPOSE 8082 # Set the entrypoint to the server binary ENTRYPOINT ["/server/github-mcp-server"] # Default arguments for ENTRYPOINT