mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 02:56:13 +01:00
13 lines
293 B
Bash
13 lines
293 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
[[ ! -e /.dockerenv ]] && exit 0
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
apt-get update -yqq
|
||
|
apt-get install git libzip-dev unzip -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
|