FROM python:3.11-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt ENV PLAYWRIGHT_BROWSERS_PATH=0 RUN pip install --no-cache-dir playwright && \ playwright install-deps chromium && \ playwright install chromium COPY . . EXPOSE 7860 CMD ["python", "./app.py"]