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