Spaces:
Runtime error
Runtime error
| FROM python:3.10 | |
| WORKDIR /app | |
| COPY ./requirements.txt /app/requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 | |
| COPY . /app | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |