Fixing permission issues

This commit is contained in:
2022-01-12 14:56:08 +10:00
parent 7b1e03bf8e
commit a4e43522db

View File

@@ -1,8 +1,11 @@
FROM python:3.8
ADD converter.py /app/
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" ]