Initial commit

This commit is contained in:
2026-03-05 20:30:21 +00:00
commit 87f1f12bc8
8 changed files with 301 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM python:3.14-slim
# Copy application files
WORKDIR /app
COPY config.py .
COPY flairtimermodmail.py .
RUN mkdir -p /app/config
# Install dependencies
RUN pip install --no-cache-dir praw
ENV PYTHONUNBUFFERED=1
# Run the script
CMD ["python", "flairtimermodmail.py"]