fastmcp-space / Dockerfile
Fancellu's picture
Upload 4 files
ff72ec6 verified
raw
history blame
215 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
EXPOSE 7860
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]