2026-02-22 20:15:47 +00:00
|
|
|
FROM python:3.14-slim
|
|
|
|
|
|
|
|
|
|
# Copy application files
|
2026-02-22 21:21:12 +00:00
|
|
|
WORKDIR /app
|
2026-02-22 20:15:47 +00:00
|
|
|
COPY config.py .
|
|
|
|
|
COPY flairtimercomment.py .
|
2026-02-22 21:15:45 +00:00
|
|
|
|
2026-02-22 21:36:36 +00:00
|
|
|
RUN mkdir -p /app/config
|
|
|
|
|
|
2026-02-22 20:15:47 +00:00
|
|
|
# Install dependencies
|
|
|
|
|
RUN pip install --no-cache-dir praw
|
|
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
|
|
|
|
|
|
# Run the script
|
2026-02-22 21:21:12 +00:00
|
|
|
CMD ["python", "flairtimercomment.py"]
|
2026-02-22 20:15:47 +00:00
|
|
|
|
|
|
|
|
|