From 5c8f6b563ab8a9107745cc96a97aa4471c1761e8 Mon Sep 17 00:00:00 2001 From: "A.M. Rowsell" Date: Wed, 5 Mar 2025 17:30:36 -0500 Subject: [PATCH] Added basic, untested Dockerfile This will be the basis for the docker support. I haven't gotten it working yet as I need to make some other changes to the script. Should this be kept as a separate branch...? --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5719a30 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.13.2-alpine3.21 + +WORKDIR /usr/src/app + +COPY discorss.py ./ +COPY discorss.conf /etc/ + +RUN pip install --no-cache-dir requests feedparser + +CMD [ "python", "discorss.py" ] \ No newline at end of file