Created
February 2, 2016 21:56
-
-
Save iolson/5e3695bc5c9f7afafeb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# We need to install dependencies only for Docker | |
[[ ! -e /.dockerinit ]] && exit 0 | |
set -xe | |
# Update | |
apt-get update -yqq | |
# Git | |
apt-get install git -yqq | |
# Zlib | |
apt-get install zlib1g-dev | |
# PHPUnit | |
curl -o /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar | |
chmod +x /usr/local/bin/phpunit | |
# PHP Extensions | |
docker-php-ext-install pdo_mysql | |
docker-php-ext-install mbstring | |
docker-php-ext-install zip | |
# Composer | |
curl -sS https://getcomposer.org/installer | php | |
mv composer.phar /usr/local/bin/composer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.dockerinit removed moby/moby#19490