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