Spaces:
Runtime error
Runtime error
FROM python:3.11 | |
WORKDIR /backend | |
COPY ./requirements.txt /backend/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /backend/requirements.txt | |
COPY . . | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |