10 lines
532 B
Plaintext
Executable File
10 lines
532 B
Plaintext
Executable File
#/bin/bash
|
|
apt install -y build-essential git wget ca-certificates
|
|
wget -qO - https://deb.nodesource.com/setup_16.x | bash
|
|
#wget -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarnkey.gpg
|
|
#echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list
|
|
apt-get update
|
|
apt-get install -y nodejs
|
|
wget -qO - https://go.dev/dl/go1.17.3.linux-amd64.tar.gz | tar -C /usr/local -xz
|
|
wget -qO - https://get.pnpm.io/install.sh | sh -
|