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