Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
5c8f6b563a | |||
140098507a |
2 changed files with 19 additions and 1 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" ]
|
10
discorss.py
10
discorss.py
|
@ -210,4 +210,12 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
if os.environ["INVOCATION_ID"]:
|
||||||
|
main()
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
main()
|
||||||
|
time.sleep(15 * 60)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
exit(0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue