Query/build/docker_install.sh

28 lines
871 B
Bash
Raw Normal View History

#!/bin/sh
2016-07-15 15:50:28 -04:00
# We need to install dependencies only for Docker
[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0
# Where am I?
a="/$0"; a=${a%/*}; a=${a:-.}; a=${a#/}/; DIR=$(cd $a; pwd)
2016-07-15 15:50:28 -04:00
set -xe
# Install git (the php image doesn't have it) which is required by composer
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
apk add --no-cache \
curl \
git \
postgresql-dev
2016-07-15 15:50:28 -04:00
# Install phpunit, the tool that we will use for testing
curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
chmod +x /usr/local/bin/phpunit
2016-07-19 10:51:20 -04:00
# Set up build config
2016-07-19 11:17:55 -04:00
rm "$DIR/../tests/settings.json.dist"
mv "$DIR/../tests/settings-ci.json" "$DIR/../tests/settings.json"
2016-07-19 10:51:20 -04:00
2018-01-31 14:17:14 -05:00
# Install pdo drivers
docker-php-ext-install pdo_mysql pdo_pgsql