Create Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
FROM python:3.11-slim
|
3 |
+
WORKDIR /app
|
4 |
+
RUN pip install mcpo uv
|
5 |
+
# Replace with your MCP server command; example: uvx mcp-server-time
|
6 |
+
CMD ["uvx", "mcpo", "--host", "0.0.0.0", "--port", "8000", "--", "uvx", "@modelcontextprotocol/server-sequential-thinking","-y"]
|