Compare commits

..

13 Commits

Author SHA1 Message Date
d8a8162ffd Making the latest changes Updating to version 2.0.49 2024-04-11 23:17:23 +00:00
32d405aa80 Deleting vscode user when ${HOME_USER} exist. Updating to version 2.0.48 2024-04-11 22:30:56 +00:00
2a98fcce78 Trying to fix issue. Updating to version 2.0.47 2024-04-11 20:29:41 +00:00
3ab91f9f5f Trying to fix issue. Updating to version 2.0.46 2024-04-11 04:45:09 +00:00
840fdfaf1e Trying to fix issue. Updating to version 2.0.45 2024-04-10 12:24:50 +00:00
f7a5094cc3 Trying to fix issue. Updating to version 2.0.44 2024-04-10 11:38:24 +00:00
22f0003c53 Trying to fix issue. Updating to version 2.0.43 2024-04-10 10:24:03 +00:00
b08429c9ae Fixing permissions of tunnel. Updating to version 2.0.42 2024-04-10 09:35:28 +00:00
7f81f891ab Trying to fix issue. Updating to version 2.0.41 2024-04-10 08:49:31 +00:00
66c96f1fe7 Fixing issue of sed. Updating to version 2.0.40 2024-04-10 08:03:53 +00:00
1e5523c1f7 Fixing errors of user. Updating to version 2.0.39 2024-04-10 07:24:41 +00:00
390f9cdc15 Trying to fix issue with environment variables. Updating to version 2.0.38 2024-04-10 06:34:01 +00:00
f9503fe827 Trying to fix user. Updating to version 2.0.37 2024-04-10 06:23:37 +00:00
3 changed files with 18 additions and 14 deletions

View File

@ -47,8 +47,4 @@ RUN sudo sysctl -w fs.inotify.max_user_watches=524288
ADD ./entrypoint.sh /usr/bin/entrypoint.sh
RUN sudo chmod +x /usr/bin/entrypoint.sh
USER 1000
ENV USER=vscode
WORKDIR /home/vscode
ENTRYPOINT ["/usr/bin/entrypoint.sh"]

View File

@ -33,20 +33,28 @@ if [ "${HOME_USER-}" ]; then
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
# Get the PATH of vscode user
VSCODE_PATH=$(sudo -u vscode -i echo $PATH)
# Copy the .bashrc file from vscode user to HOME_USER
sudo su - ${HOME_USER} -c "cat /home/vscode/.bashrc >> ~/.bashrc"
# Add the PATH to the .bashrc of HOME_USER
sudo su - ${HOME_USER} -c "echo 'export PATH=$VSCODE_PATH' >> ~/.bashrc"
# Changing the property of the directory /home/${HOME_USER}
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/
# Creating .vscode folder if it doesn't exist
if [ ! -d "/home/${HOME_USER}/.vscode" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode
fi
# Changing the property of the directory /home/${HOME_USER}/.vscode
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/.vscode
# Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c 'sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
sudo su - ${HOME_USER} -c "sudo sed -i \"s|/home/vscode|/home/${HOME_USER}|g\" ~/.bashrc"
# Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo -u $HOME_USER -i
sudo su -l ${HOME_USER}
# Delete the vscode user
sudo userdel -r vscode
else
# Switch to the user specified by $HOME_USER and start an interactive shell session.
sudo su -l ${HOME_USER}
fi
fi

View File

@ -1 +1 @@
2.0.36
2.0.49