mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-06-19 12:28:15 -06:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
8ffbd5d818
|
|||
c2f5311948
|
|||
f91d1c56a1
|
@ -48,8 +48,14 @@ sed 's/^USER_ENV_//' |
|
||||
# Append the result to /usr/bin/.bashrc
|
||||
while IFS= read -r line
|
||||
do
|
||||
echo "" >> /usr/bin/.bashrc
|
||||
echo "export $line" >> /usr/bin/.bashrc
|
||||
# Check if the current user is root
|
||||
if [ "$(id -u)" = "0" ]; then
|
||||
echo "" >> /usr/bin/.bashrc
|
||||
echo "export $line" >> /usr/bin/.bashrc
|
||||
else
|
||||
echo "" >> /home/${HOME_USER}/.bashrc
|
||||
echo "export $line" >> /home/${HOME_USER}/.bashrc
|
||||
fi
|
||||
done
|
||||
|
||||
USER="$HOME_USER"
|
||||
@ -69,8 +75,6 @@ fi
|
||||
# Then execute entrypoint.sh
|
||||
if [ "$HOME_USER" != "$(whoami)" ]; then
|
||||
exec sudo -u $HOME_USER bash -c "source /etc/environment; /usr/bin/entrypoint.sh"
|
||||
else
|
||||
sudo chown -R ${HOME_USER} /home/${HOME_USER}
|
||||
fi
|
||||
|
||||
# Move the .bashrc file to the user's home directory if it doesn't exist
|
||||
|
@ -1 +1 @@
|
||||
3.0.31
|
||||
3.0.34
|
Reference in New Issue
Block a user