photoprism/scripts/dist/install-nodejs.sh
Michael Mayer ec78dd517b CI: Update dist build scripts
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-07-23 13:08:24 +02:00

23 lines
559 B
Bash
Executable file

#!/bin/bash
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts:$PATH"
# abort if not executed as root
if [[ $(id -u) != "0" ]]; then
echo "Usage: run ${0##*/} as root" 1>&2
exit 1
fi
set -e
SETUP_URL="https://deb.nodesource.com/setup_16.x"
echo "Installing NodeJS and NPM from \"$SETUP_URL\"..."
curl -sL $SETUP_URL | bash -
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
echo "Done."