This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mcp-shepard/Dockerfile
T
2026-05-21 07:30:50 +02:00

10 lines
164 B
Docker

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