diff options
Diffstat (limited to 'OS')
-rw-r--r-- | OS/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OS/Dockerfile b/OS/Dockerfile index f04434e..1237603 100644 --- a/OS/Dockerfile +++ b/OS/Dockerfile @@ -3,7 +3,8 @@ MAINTAINER Christophe LARUE <dev@startx.fr> COPY sx.sh /bin/sx RUN chmod 775 /bin/sx -RUN useradd startx && echo "startx" | passwd --stdin startx && usermod -aG wheel startx +RUN useradd startx && echo "startx" | passwd --stdin startx USER startx + CMD [ "/bin/sx" ] |