Skip to content
Snippets Groups Projects
Commit 9e6a62d5 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

dev #53508 add yaz and phantomjs

parent 2607eccd
4 merge requests!2080Sandbox detach zf from storm,!2061Master,!1997Dev#53508 ci with docker,!1917[WIP] Hotline#50082 mixed records links in loans list
Pipeline #255 failed with stage
in 22 minutes and 16 seconds
......@@ -17,15 +17,23 @@ apt-get install libfreetype6-dev \
libmcrypt-dev \
imagemagick \
libmagickwand-dev \
libfontconfig \
yaz \
mysql-client \
git -yqq
# required php extensions not included in base php image
pecl install imagick-3.4.3RC1
docker-php-ext-enable imagick
docker-php-ext-install mysqli mcrypt gettext calendar zip soap
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
docker-php-ext-install gd
pecl install imagick-3.4.3RC1 \
&& docker-php-ext-enable imagick \
&& docker-php-ext-install mysqli mcrypt gettext calendar zip soap \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install gd
mkdir /tmp/phantomjs \
&& curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 \
| tar -xj --strip-components=1 -C /tmp/phantomjs \
&& mv /tmp/phantomjs/bin/phantomjs /usr/local/bin \
&& rm -rf /tmp/phantomjs
# data preparation
curl --location --output default-ci-dump.sql.gz http://sandbox.afi-sa.net/databases/default-ci-dump.sql.gz
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment