|
|
|
@ -20,20 +20,23 @@ $STD apt-get install -y mc
|
|
|
|
|
$STD apt-get install -y gcc
|
|
|
|
|
$STD apt-get install -y g++
|
|
|
|
|
$STD apt-get install -y git
|
|
|
|
|
$STD apt-get install -y gnupg
|
|
|
|
|
$STD apt-get install -y make
|
|
|
|
|
$STD apt-get install -y zip
|
|
|
|
|
$STD apt-get install -y exiftool
|
|
|
|
|
$STD apt-get install -y ffmpeg
|
|
|
|
|
$STD apt-get install -y libheif1
|
|
|
|
|
$STD apt-get install -y ca-certificates
|
|
|
|
|
$STD apt-get install -y gnupg
|
|
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
|
|
|
|
msg_info "Setting up Node.js Repository"
|
|
|
|
|
$STD bash <(curl -fsSL https://deb.nodesource.com/setup_18.x)
|
|
|
|
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
|
|
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
|
|
|
|
msg_ok "Set up Node.js Repository"
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Node.js"
|
|
|
|
|
$STD apt-get -y install nodejs
|
|
|
|
|
$STD apt-get update
|
|
|
|
|
$STD apt-get install -y nodejs
|
|
|
|
|
msg_ok "Installed Node.js"
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Golang"
|
|
|
|
|