HSBCConverter/Dockerfile

8 lines
121 B
Text
Raw Normal View History

FROM python:3
ADD converter.py /
RUN pip install OfxParser
RUN pip install watchdog
CMD [ "python", "./converter.py" ]