Merge branch 'master' of github.com:sabrehagen/desktop-environment

This commit is contained in:
Jackson Delahunt 2019-02-15 22:05:42 +11:00
commit 4a1dba7ad8

View file

@ -68,8 +68,7 @@ ENV USER jackson
ENV HOME /$USER/home
# Make the user's workspace directory
RUN mkdir -p $HOME && \
chown -R $USER:$USER /$USER
RUN mkdir -p $HOME
# Program environment configuration
ENV SSH_AUTH_SOCK $HOME/.ssh.sock
@ -96,6 +95,9 @@ RUN usermod \
--groups audio,chrome,video \
$USER
# Take ownership of the desktop user's folder
RUN chown -R $USER:$USER /$USER
# Become the desktop user
USER $USER
WORKDIR $HOME