FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy WORKDIR /app COPY . . RUN pip install --no-cache-dir -r requirements.txt RUN playwright install chromium RUN playwright install-deps chromium EXPOSE 7860 CMD ["python", "app.py"]