Files
2026-05-21 07:30:51 +02:00

13 lines
212 B
Docker

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"]