From d5eb7a47d1951f64a35a66682735b2364f5dc39e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 15 Oct 2020 18:24:09 +0200 Subject: [PATCH] Drop unzip, not needed --- entrypoint.sh.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index 0a451e1..49557b1 100755 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -4,7 +4,7 @@ set -eu -o pipefail init_php() { if ! type composer > /dev/null 2>&1; then - apt update && apt install -y curl git unzip + apt update && apt install -y curl git curl -sS https://getcomposer.org/installer -o /tmp/composer-setup.php php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer --version=1.10.15 composer -V