mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
Develop: Update NodeJS install script
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
868290ecd9
commit
2f92e293ff
1 changed files with 5 additions and 3 deletions
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue