Develop: Update NodeJS install script

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2022-08-10 09:26:30 +02:00
parent 868290ecd9
commit 2f92e293ff

View File

@@ -14,11 +14,13 @@ fi
set -e
SETUP_URL="https://deb.nodesource.com/setup_18.x"
wget --inet4-only -c -qO- https://deb.nodesource.com/setup_18.x | bash -
echo "Installing NodeJS and NPM from \"$SETUP_URL\"..."
curl -sL $SETUP_URL | bash -
echo "Fetching packages from \"$SETUP_URL\"..."
wget --inet4-only -c -qO- $SETUP_URL | bash -
echo "Installing NodeJS, NPM, and TestCafe..."
apt-get update && apt-get -qq install nodejs
npm install --unsafe-perm=true --allow-root -g npm testcafe
npm config set cache ~/.cache/npm
npm update --unsafe-perm=true --allow-root -g