Initial commit

This commit is contained in:
2026-02-21 22:25:47 +00:00
parent a430ef27ac
commit 567c3ace88
17 changed files with 26 additions and 715 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM python:3.7-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt && \
rm requirements.txt
# Copy application code
COPY pointsbot ./pointsbot
COPY pointsbot.py .
# Set environment to use unbuffered Python output
ENV PYTHONUNBUFFERED=1
# Run the bot
CMD ["python", "pointsbot.py"]