Spaces:
Paused
Paused
| FROM mcr.microsoft.com/playwright/python:v1.49.0-jammy | |
| USER pwuser | |
| WORKDIR /app | |
| ENV PATH="/home/pwuser/.local/bin:${PATH}" | |
| COPY --chown=pwuser requirements.txt . | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| RUN playwright install chromium | |
| COPY --chown=pwuser . . | |
| EXPOSE 7860 | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |