2026-02-22 20:15:47 +00:00
|
|
|
FROM python:3.14-slim
|
|
|
|
|
|
|
|
|
|
# Copy application files
|
2026-02-22 20:56:31 +00:00
|
|
|
|
|
|
|
|
WORKDIR /config
|
2026-02-22 21:00:38 +00:00
|
|
|
COPY scripts ./scripts
|
2026-02-22 20:15:47 +00:00
|
|
|
COPY config.py .
|
|
|
|
|
COPY flairtimercomment.py .
|
2026-02-22 20:56:31 +00:00
|
|
|
# Create App directory
|
|
|
|
|
RUN mkdir /app
|
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 20:56:31 +00:00
|
|
|
CMD ["sh", "/config/scripts/autorun.sh"]
|
2026-02-22 20:15:47 +00:00
|
|
|
|
|
|
|
|
|