Spaces:
Running
Running
FROM python:3.9 | |
COPY ./ ./ | |
# Install dependencies | |
RUN pip install --no-cache --upgrade -r /requirements.txt | |
# Start the application | |
CMD ["uvicorn", "backend.api.app:app", "--host", "0.0.0.0", "--port", "7860"] | |