mirror of https://github.com/rancher/ui.git
18 lines
305 B
Bash
Executable File
18 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# cd to app root
|
|
CWD=$(dirname $0)
|
|
if [[ `basename $(pwd)` = 'scripts' ]]; then
|
|
cd ../
|
|
else
|
|
cd `dirname $CWD`
|
|
fi
|
|
|
|
apt-get update
|
|
apt-get install -y npm phantomjs
|
|
update-alternatives --install /usr/bin/node node /usr/bin/nodejs 10
|
|
npm set cache /var/cache/npm
|
|
|
|
npm install -g bower
|