discorss/Dockerfile
A.M. Rowsell 5c8f6b563a
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...?
2025-03-05 17:30:36 -05:00

10 lines
No EOL
182 B
Docker

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