11 lines
188 B
Docker
11 lines
188 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
RUN pip install --upgrade pip && pip install playwright==1.56.0 redis requests
|
|
|
|
COPY checker.py .
|
|
|
|
CMD ["python", "checker.py"]
|