Spaces:
Sleeping
Sleeping
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker | |
# you will also find guides on how best to write your Dockerfile | |
FROM python:3.10-slim | |
WORKDIR /app | |
COPY requirements.txt . | |
RUN pip install --upgrade pip && pip install -r requirements.txt --no-cache-dir | |
COPY . . | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |