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...?
This commit is contained in:
A.M. Rowsell 2025-03-05 17:30:36 -05:00
parent 140098507a
commit 5c8f6b563a
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9

10
Dockerfile Normal file
View file

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