feat: edu phpsessid updater bot

This commit is contained in:
2025-11-26 17:00:44 +01:00
parent 258ed04f98
commit 7cbc5bf4f3
17 changed files with 128 additions and 1081 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
RUN pip install requests
# Copy application code
COPY . .
# Run the bot
CMD ["python", "bot.py"]