mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Develop: Update NodeJS install script
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
8
scripts/dist/install-nodejs.sh
vendored
8
scripts/dist/install-nodejs.sh
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user