FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 471ce70f authored by L. Bower's avatar L. Bower
Browse files

adding -l option to useradd

parent 0730e546
No related branches found
No related tags found
No related merge requests found
...@@ -186,4 +186,5 @@ dependencies: ...@@ -186,4 +186,5 @@ dependencies:
- coverage==6.5.0 - coverage==6.5.0
- html-testrunner==1.2.1 - html-testrunner==1.2.1
- testresources==2.0.1 - testresources==2.0.1
- rioxarray==0.15.0
prefix: /storage/app/EWS/envs/conda/py3EWS prefix: /storage/app/EWS/envs/conda/py3EWS
...@@ -40,7 +40,7 @@ ARG UNAME=ewsmanager ...@@ -40,7 +40,7 @@ ARG UNAME=ewsmanager
ARG UID=1006 ARG UID=1006
ARG GID=1008 ARG GID=1008
RUN groupadd -g $GID $GNAME RUN groupadd -g $GID $GNAME
RUN useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME RUN useradd -l -m -u $UID -g $GID -o -s /bin/bash $UNAME
USER $UNAME USER $UNAME
RUN echo $PYTHONPATH RUN echo $PYTHONPATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment