From 73d7825fa1328b15d0312a353fdb2633d2fe4d98 Mon Sep 17 00:00:00 2001 From: Slfhstd Date: Sun, 22 Feb 2026 20:15:47 +0000 Subject: [PATCH] Added dockerfile for image creation --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dea7f09 --- /dev/null +++ b/Dockerfile @@ -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"] + +