Attempt moving config file in a different way

This commit is contained in:
Timothy Warren 2016-07-25 12:18:51 -04:00
parent 2a41106638
commit b415938583
2 changed files with 2 additions and 4 deletions

View File

@ -4,6 +4,8 @@ before_script:
# Install composer dependencies
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
# Move redis test config file into place
- mv "./tests/redis.toml" "./app/config/redis.toml"
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to

View File

@ -16,10 +16,6 @@ apt-get install git unzip libfreetype6 libjpeg62-turbo libmcrypt4 libpng12-0 lib
curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
chmod +x /usr/local/bin/phpunit
# Move redis test config file into place
mv "$DIR/tests/redis.toml" "$DIR/app/config/redis.toml"
# Install gd
docker-php-ext-configure gd --enable-gd-native-ttf --with-jpeg-dir=/usr/lib/x86_64-linux-gnu --with-png-dir=/usr/lib/x86_64-linux-gnu --with-freetype-dir=/usr/lib/x86_64-linux-gnu
docker-php-ext-install gd