chore: initial commit

This commit is contained in:
2026-05-21 07:30:51 +02:00
commit 633e828a2e
2 changed files with 137 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM ghcr.io/astral-sh/uv:python3.12-trixie-slim
WORKDIR /app
COPY server.py .
RUN uv pip install --system fastmcp boto3
ENV FASTMCP_HOST=0.0.0.0
ENV FASTMCP_PORT=8000
EXPOSE 8000
CMD ["python", "server.py"]