Added watchdog to watch for changes and automatically convert

This commit is contained in:
2022-01-11 16:07:31 +10:00
parent 435a237049
commit 0b68363c6e
5 changed files with 99 additions and 221 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3
ADD converter.py /
RUN pip install OfxParser
RUN pip install watchdog
CMD [ "python", "./converter.py" ]