Initial commit

This commit is contained in:
2026-02-23 22:48:25 +00:00
commit b8182ead88
46 changed files with 1845 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.14-slim
WORKDIR /app
# Copy application files
COPY Bot ./Bot
RUN mkdir -p /app/config
# Install dependencies
RUN pip install --no-cache-dir praw
ENV PYTHONUNBUFFERED=1
# Run the script
CMD ["python", "Bot/main.py"]