File size: 308 Bytes
9682111 ff732b0 9682111 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use python 3.10 as base
FROM python:3.10-slim
WORKDIR /app
# Copy dependency definition
COPY pyproject.toml .
# Install dependencies
RUN pip install --no-cache-dir mcp huggingface_hub python-dotenv
# Copy application code
COPY server.py utils.py deploy.py ./
EXPOSE 7860
CMD ["python", "deploy.py"]
|