HSBCConverter/Dockerfile

8 lines
128 B
Text
Raw Normal View History

FROM python:3
2022-01-11 18:21:19 +10:00
ADD converter.py /app/
2022-01-11 18:21:19 +10:00
RUN pip install ofxparse
RUN pip install watchdog
2022-01-11 18:21:19 +10:00
CMD [ "python", "./app/converter.py" ]