Files

19 lines
276 B
Docker
Raw Permalink Normal View History

2026-03-05 20:30:21 +00:00
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"]