Spaces:
Sleeping
Sleeping
| FROM python:3.10-slim | |
| RUN apt-get update && apt-get install -y \ | |
| wget gnupg ca-certificates curl \ | |
| libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 \ | |
| libcups2 libdrm2 libxkbcommon0 libxcomposite1 \ | |
| libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2 \ | |
| --no-install-recommends && \ | |
| rm -rf /var/lib/apt/lists/* | |
| WORKDIR /code | |
| RUN pip install --no-cache-dir fastapi uvicorn playwright | |
| RUN playwright install chromium | |
| COPY . . | |
| ENV PYTHONUNBUFFERED=1 | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |