Shinobi/Docker/install_nodejs.sh

23 lines
795 B
Bash

#!/bin/sh
if [ -x "$(command -v node)" ]; then
echo "Node.js detected. Version : $(node -v)"
else
echo "Installing Node.js 18"
mkdir -p /etc/apt/keyrings
apt-get install -y ca-certificates gnupg
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" | tee /etc/apt/sources.list.d/nodesource.list
apt-get update -y --fix-missing
apt-get upgrade -y
apt-get install nodejs -y
fi
if [ -x "$(command -v npm)" ]; then
echo "NPM detected. Version : $(npm -v)"
fi
npm install --unsafe-perm $([ `dpkg --print-architecture` = "arm64" ] && echo --maxsockets 1)
npm i pm2@latest -g
npm i pg