Dhanushsaireddy144's picture
Update Dockerfile to copy deploy.py
28b9194
raw
history blame contribute delete
308 Bytes
# 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"]