2022-01-12 10:13:01 +10:00
|
|
|
FROM python:3.8
|
2022-01-11 16:07:31 +10:00
|
|
|
|
2022-01-11 18:21:19 +10:00
|
|
|
ADD converter.py /app/
|
2022-01-11 16:07:31 +10:00
|
|
|
|
2022-01-11 18:21:19 +10:00
|
|
|
RUN pip install ofxparse
|
2022-01-11 16:07:31 +10:00
|
|
|
RUN pip install watchdog
|
|
|
|
|
|
2022-01-11 18:21:19 +10:00
|
|
|
CMD [ "python", "./app/converter.py" ]
|