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"] + +