feat: basic webinar checker bot

This commit is contained in:
2025-11-26 21:08:43 +01:00
parent bfbe841154
commit cb92bff0c5
3 changed files with 159 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
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"]