Add Dockerfile

This commit is contained in:
2026-05-27 18:40:17 +00:00
parent d7b04816b3
commit 85cf2327ca
+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"]