Initial working version

This commit is contained in:
2025-05-29 15:04:36 -04:00
parent 7206661877
commit e991862a01
10 changed files with 406 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
# Dockerfile
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1
# Set working directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy bot source code
COPY bot/ ./bot
# Set default command
CMD ["python", "bot/main.py"]