move /home/$USERNAME to always be /home/user
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jeffrey Paul 2020-04-11 12:59:14 -07:00
parent a53143c0d0
commit 4127d1d8b1
5 changed files with 1 additions and 7 deletions

View File

@ -25,7 +25,7 @@ RUN \
apt -y upgrade && \
apt -y install $SYSTEM_PACKAGES && \
groupadd -g $GID_TO_ADD $USERNAME_TO_ADD && \
useradd -u $UID_TO_ADD -g $GID_TO_ADD -s /bin/bash $USERNAME_TO_ADD && \
useradd -u $UID_TO_ADD -g $GID_TO_ADD --home-dir /home/user -s /bin/bash $USERNAME_TO_ADD && \
usermod -p '*' $USERNAME_TO_ADD && \
echo $USERNAME_TO_ADD > /etc/workuser && \
go get -v -u github.com/peterbourgon/runsvinit && \

View File

@ -35,7 +35,6 @@ pip3 install black
# install vim-go
sudo \
--preserve-env=USERNAME_TO_ADD \
--set-home \
--non-interactive \
-u $USERNAME_TO_ADD \

View File

@ -11,11 +11,6 @@ U="$USERNAME_TO_ADD"
# original home
OH="/hosthome"
# container home
export HOME="/home/$U"
rsync -avP /home/template/ $HOME/
# link ~/.home to original home
ln -s "/hosthome" $HOME/.home