Compare commits

...

30 Commits

Author SHA1 Message Date
cb4bf58db9 Fixing issue of permissions on /home/${HOME_USER} directory. Updating to version 2.0.32 2024-04-09 20:46:54 +00:00
ed98e9a48c Fixing colors of Terminal and entrances of HOME_USER in .bashrc. Updating to version 2.0.31 2024-04-09 20:06:56 +00:00
2ab5fcffc7 Trying to fix user issue. Updating to version 2.0.30 2024-04-09 03:50:29 +00:00
c1acddcc6e Trying to fix issue in user. updating to version 2.0.29 2024-04-09 03:07:15 +00:00
a9b021cebe Trying to fix issue. updating to version 2.0.28 2024-04-09 01:56:06 +00:00
fd7e35cf34 Trying to fix user issue. Updating version to 2.0.27 2024-04-09 01:04:04 +00:00
f929aaac63 Trying to fix user issue. Updating to version 2.0.26 2024-04-09 00:21:44 +00:00
c1affb8781 making reverse of the changes. Updating to version 2.0.25 2024-04-08 21:31:42 +00:00
dfeddf9688 Updating package updating to version 2.0.24 2024-04-07 04:20:07 +00:00
fe2a226190 Trying to fix issue. Updating to version 2.0.23 2024-04-06 23:49:46 +00:00
a983adf4ad Se quita la parte del usuario de Home user para solo ejecutar el primer comando de inicializacion. Se sube a version 2.0.22 2024-04-06 22:51:29 +00:00
374d13fe6c Trying to fix. updating to version 2.0.21 2024-04-06 01:58:10 +00:00
d4391139b2 Trying to fix issue. Updating to version 2.0.20 2024-04-06 01:09:50 +00:00
13571867ca Trying to fix users issue updating to version 2.0.19 2024-04-05 23:44:48 +00:00
52b9e7a411 Trying to fix users issue. Updating to version 2.0.18 2024-04-05 21:03:19 +00:00
04e26f2afc Trying to fix issue. Updating to version 2.0.17 2024-03-30 04:56:24 +00:00
dddaf129f4 Trying to fix. Updating to version 2.0.16 2024-03-30 03:15:32 +00:00
6525dc4c7e Trying to fix issue. updating to version 2.0.15 2024-03-30 01:28:33 +00:00
b3609b3d0b Trying to fix adding environment variables to app. 2024-03-29 22:35:02 +00:00
dd283a2c5f Adding the environment variables of vscode to home user. Updating to version 2.0.13 2024-03-19 19:50:04 +00:00
18fe10675c Updating version to version 2.0.12 and trying to fix isuue. 2024-03-05 22:23:30 +00:00
aabc21eac2 Trying to fix the issue. Updating to version 2.0.11 2024-03-05 20:47:59 +00:00
50708112ac Trying to fix again the issue. Updating to version 2.0.10 2024-03-05 20:02:48 +00:00
f29f99181e Trying to fix. Updatin to version 2.0.9 2024-02-15 23:27:33 +00:00
8e9ef7bfa9 Trying to fix issue. updating to version 2.0.8 2024-02-15 20:18:50 +00:00
762ff44dc8 Fixing sudo issue. 2024-02-15 18:56:28 +00:00
ac7a82f0ca Trying to fix issue. Updating to version 2.0.6 2024-02-15 18:41:29 +00:00
9bac2433a6 Trying to fix. Updating to version 2.0.5 2024-02-15 06:23:40 +00:00
d8a291c82d Trying to fix. Version 2.0.4 2024-02-15 04:07:06 +00:00
3cee54d519 Trying to fix it. 2.0.3 2024-02-15 03:50:50 +00:00
3 changed files with 52 additions and 9 deletions

View File

@ -12,7 +12,10 @@ RUN sudo apt-get install -y wget
#Instalando jq #Instalando jq
RUN sudo apt-get install -y jq RUN sudo apt-get install -y jq
RUN adduser --uid 1001 --gecos '' --disabled-password vscode \ RUN sudo apt-get update
RUN sudo apt-get install dumb-init
RUN adduser --gecos '' --disabled-password vscode \
&& echo "vscode ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd && echo "vscode ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/nopasswd
RUN ARCH="$(dpkg --print-architecture)" \ RUN ARCH="$(dpkg --print-architecture)" \

54
entrypoint.sh Normal file → Executable file
View File

@ -16,23 +16,63 @@ eval "$(fixuid -q)"
if [ "${HOME_USER-}" ]; then if [ "${HOME_USER-}" ]; then
USER="$HOME_USER" USER="$HOME_USER"
if [ "$HOME_USER" != "$(whoami)" ]; then if [ "$HOME_USER" != "$(whoami)" ]; then
echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null if ! id -u $HOME_USER > /dev/null 2>&1; then
sudo adduser --disabled-password --gecos "" ${HOME_USER}
sudo echo "$HOME_USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers.d/nopasswd > /dev/null
fi
sudo cp -R /home/vscode/. /home/${HOME_USER}/
# Check if .bashrc file exists
if [ ! -f "/home/${HOME_USER}/.bashrc" ]; then
# If not, create it
sudo touch /home/${HOME_USER}/.bashrc
fi
# Change the owner of the .bashrc file to HOME_USER
sudo chown ${HOME_USER} /home/${HOME_USER}/.bashrc
# Copy environment variables from vscode user to HOME_USER
env | grep -v 'HOME_USER' | while read -r line; do
sudo su - ${HOME_USER} -c "echo 'export $line' >> ~/.bashrc"
done
# Changing the property of the directory /home/${HOME_USER}
sudo chown -R ${HOME_USER}: /home/${HOME_USER}/
# Changing the HOME_USER in the .bashrc file
sudo su - ${HOME_USER} -c 'sed -i "s|/home/vscode|/home/${HOME_USER}|g" ~/.bashrc'
sudo -u $HOME_USER -i
# Unfortunately we cannot change $HOME as we cannot move any bind mounts # Unfortunately we cannot change $HOME as we cannot move any bind mounts
# nor can we bind mount $HOME into a new home as that requires a privileged container. # nor can we bind mount $HOME into a new home as that requires a privileged container.
sudo usermod --login "$HOME_USER" vscode # sudo usermod --login "$HOME_USER" vscode
sudo groupmod -n "$HOME_USER" vscode # sudo groupmod -n "$HOME_USER" vscode
sudo sed -i "/vscode/d" /etc/sudoers.d/nopasswd # sudo sed -i "/vscode/d" /etc/sudoers.d/nopasswd
# sudo cd /home/${HOME_USER}
sudo chown -R ${HOME_USER}:${HOME_USER} /home/${HOME_USER}
fi fi
fi fi
# Add LS_COLORS variable to .bashrc
LS_COLORS_VALUE="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
sudo su - ${HOME_USER} -c "echo 'export LS_COLORS=\"$LS_COLORS_VALUE\"' >> ~/.bashrc"
#Creating extensions folder #Creating extensions folder
sudo mkdir /home/${HOME_USER}/.config/Code if [ ! -d "/home/${HOME_USER}/.config/Code" ]; then
sudo mkdir -p /home/${HOME_USER}/.config/Code
fi
sudo chmod -R a+rwX /home/${HOME_USER}/.config/Code sudo chmod -R a+rwX /home/${HOME_USER}/.config/Code
sudo mkdir /home/${HOME_USER}/.vscode-server
if [ ! -d "/home/${HOME_USER}/.vscode-server" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode-server
fi
sudo chmod -R a+rwX /home/${HOME_USER}/.vscode-server sudo chmod -R a+rwX /home/${HOME_USER}/.vscode-server
sudo mkdir /home/${HOME_USER}/.vscode-server-insiders
if [ ! -d "/home/${HOME_USER}/.vscode-server-insiders" ]; then
sudo mkdir -p /home/${HOME_USER}/.vscode-server-insiders
fi
sudo chmod -R a+rwX /home/${HOME_USER}/.vscode-server-insiders sudo chmod -R a+rwX /home/${HOME_USER}/.vscode-server-insiders
# Check if the data.json file exists # Check if the data.json file exists

2
version.txt Normal file → Executable file
View File

@ -1 +1 @@
2.0.2 2.0.32