mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
10 lines
414 B
Bash
Executable File
10 lines
414 B
Bash
Executable File
sudo DEBIAN_FRONTEND=noninteractive apt-get clean
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get update
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get autoremove -y
|
|
|
|
# Install Node.js
|
|
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -;
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get update
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get install nodejs -y
|