8 lines
130 B
Docker
8 lines
130 B
Docker
FROM python:3.8
|
|
|
|
ADD converter.py /app/
|
|
|
|
RUN pip install ofxparse
|
|
RUN pip install watchdog
|
|
|
|
CMD [ "python", "./app/converter.py" ] |