FROM python:3.11-slim

WORKDIR /app

# Install dependencies
RUN pip install --upgrade pip && pip install playwright==1.56.0 redis requests "python-telegram-bot[job-queue]"

COPY checker.py .

CMD ["python", "checker.py"]
