Initial commit

This commit is contained in:
Morpheus Sandmann
2026-06-08 17:04:16 +01:00
commit b24d88a2a1
2 changed files with 42 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
# Dockerfile
FROM python:3.11-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
WORKDIR /app
RUN uv pip install --system fastmcp mcp
COPY server.py .
EXPOSE 8000
CMD ["python", "server.py"]