Add files via upload

This commit is contained in:
drifty
2025-08-09 20:09:52 +05:30
committed by GitHub
parent ec7c1262b2
commit d6d799234f
5 changed files with 391 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.11-slim
# Install dependencies
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy bot script
COPY bot.py .
# Ensure Python output is unbuffered for real-time logs
ENV PYTHONUNBUFFERED=1
CMD ["python3", "bot.py"]