Files
HSBCConverter/Dockerfile

11 lines
177 B
Docker

FROM python:3.8
RUN pip install ofxparse
RUN pip install watchdog
RUN useradd --uid 99 --gid 100 hsbc
USER hsbc
ADD converter.py /app/
CMD [ "python", "./app/converter.py" ]