8 lines
412 B
Plaintext
Executable File
8 lines
412 B
Plaintext
Executable File
#/bin/bash
|
|
apt install -y build-essential git python 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 yarn nodejs
|