Added dockerfile for image creation

This commit is contained in:
2026-02-22 20:15:47 +00:00
parent 4157b8dbd0
commit 73d7825fa1

17
Dockerfile Normal file
View File

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