Spaces:
Sleeping
Sleeping
File size: 252 Bytes
54e8ea7 |
1 2 3 4 5 6 7 |
# Minimal Dockerfile for Hugging Face Spaces or local deployment
FROM python:3.10-slim
WORKDIR /code
COPY . .
RUN pip install --upgrade pip && pip install -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |