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:
parent
140098507a
commit
5c8f6b563a
1 changed files with 10 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal 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" ]
|
Loading…
Add table
Reference in a new issue