Spaces:
Runtime error
Runtime error
| FROM python:3.12-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| libnss3 libnspr4 libatk-bridge2.0-0 libdrm2 libxkbcommon0 \ | |
| libxcomposite1 libxdamage1 libxrandr2 libgbm1 libpango-1.0-0 \ | |
| libcairo2 libasound2 libatspi2.0-0 libgtk-3-0 \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| RUN playwright install chromium | |
| COPY . . | |
| EXPOSE 7860 | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |