github-mcp-server / Dockerfile
soumyadipkarforma's picture
Update Dockerfile
0fec9bd verified
Raw
History Blame Contribute Delete
363 Bytes
FROM node:18-slim
# Install the GitHub server and the MCP-Proxy bridge
RUN npm install -g @modelcontextprotocol/server-github @mcp-proxy/server
# Hugging Face default port
EXPOSE 7860
# This bridge starts the github server and translates it to SSE for Hugging Chat
ENTRYPOINT ["mcp-proxy", "--port", "7860", "npx", "-y", "@modelcontextprotocol/server-github"]