2017-01-17 06:55:42 +00:00
|
|
|
#!/bin/bash
|
2017-02-01 03:02:06 +00:00
|
|
|
# Sets up phantomjs.
|
2017-01-17 06:55:42 +00:00
|
|
|
|
|
|
|
# Stop on errors
|
|
|
|
set -e
|
|
|
|
|
|
|
|
PHANTOMJS_VERSION="2.1.1"
|
|
|
|
|
2017-06-30 15:07:33 +00:00
|
|
|
cd /usr/src/app/
|
2017-01-17 06:55:42 +00:00
|
|
|
mkdir -p build && cd build
|
|
|
|
|
|
|
|
curl -LSO https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2
|
|
|
|
tar -xjf phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2
|
|
|
|
mv phantomjs-$PHANTOMJS_VERSION-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
|
2017-02-01 03:02:06 +00:00
|
|
|
/usr/bin/phantomjs -v
|