8 lines
121 B
Text
8 lines
121 B
Text
|
|
FROM python:3
|
||
|
|
|
||
|
|
ADD converter.py /
|
||
|
|
|
||
|
|
RUN pip install OfxParser
|
||
|
|
RUN pip install watchdog
|
||
|
|
|
||
|
|
CMD [ "python", "./converter.py" ]
|