mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 02:36:12 +01:00
13 lines
313 B
Bash
13 lines
313 B
Bash
#!/bin/bash
|
|
|
|
[[ ! -e /.dockerenv ]] && exit 0
|
|
|
|
set -xe
|
|
|
|
apt-get update -yqq
|
|
apt-get install git libzip-dev unzip libxml2-utils wget -yqq
|
|
|
|
php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/local/bin/ --filename=composer
|
|
chmod +x /usr/local/bin/composer
|
|
|
|
docker-php-ext-install zip
|