Spaces:
Paused
Paused
| FROM mcr.microsoft.com/playwright/python:v1.48.0-jammy | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY solver.py . | |
| ENV PYTHONUNBUFFERED=1 | |
| CMD ["python", "solver.py"] |