Fixing permission issues
This commit is contained in:
parent
7b1e03bf8e
commit
a4e43522db
1 changed files with 5 additions and 2 deletions
|
|
@ -1,8 +1,11 @@
|
||||||
FROM python:3.8
|
FROM python:3.8
|
||||||
|
|
||||||
ADD converter.py /app/
|
|
||||||
|
|
||||||
RUN pip install ofxparse
|
RUN pip install ofxparse
|
||||||
RUN pip install watchdog
|
RUN pip install watchdog
|
||||||
|
|
||||||
|
RUN useradd --uid 99 --gid 100 hsbc
|
||||||
|
USER hsbc
|
||||||
|
|
||||||
|
ADD converter.py /app/
|
||||||
|
|
||||||
CMD [ "python", "./app/converter.py" ]
|
CMD [ "python", "./app/converter.py" ]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue