chore: initial commit

This commit is contained in:
2026-05-21 07:30:50 +02:00
commit 3f1f9630b6
2 changed files with 288 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM ghcr.io/astral-sh/uv:python3.12-trixie-slim
WORKDIR /app
COPY server.py .
RUN uv pip install --system fastmcp httpx
EXPOSE 8000
CMD ["python", "server.py"]