This commit is contained in:
Thomas Forgione 2024-11-09 22:13:24 +01:00
parent 9dbff77dd1
commit b7a5c42b9b
2 changed files with 9 additions and 2 deletions

View File

@ -1,8 +1,8 @@
FROM debian:11 AS debian-user
RUN \
apt update && \
apt install sudo curl && \
apt update -y && \
apt install sudo curl -y && \
useradd -m tester && \
echo tester:tester | chpasswd && \
usermod -aG sudo tester

View File

@ -169,6 +169,12 @@ run() {
packages+=(npm)
fi
if [ $should_install_rust -eq 1 ]; then
packages+=(build-essential)
packages+=(pkg-config)
packages+=(libssl-dev)
fi
sudo apt install -y ${packages[@]}
if [ $should_install_dotfiles -eq 1 ]; then
@ -199,6 +205,7 @@ run() {
npm config set prefix $HOME/.npmbin
npm install -g npm
sudo apt purge npm -y
sudo apt autoremove -y
fi
if [ $should_install_neovim -eq 1 ]; then