HSBCConverter/Dockerfile

11 lines
177 B
Text
Raw Normal View History

FROM python:3.8
2022-01-11 18:21:19 +10:00
RUN pip install ofxparse
RUN pip install watchdog
2022-01-12 14:56:08 +10:00
RUN useradd --uid 99 --gid 100 hsbc
USER hsbc
ADD converter.py /app/
2022-01-11 18:21:19 +10:00
CMD [ "python", "./app/converter.py" ]