From eefc5ed6807e1c19c3eca218313119352e2b9764 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Thu, 10 Dec 2020 22:05:15 +0200 Subject: [PATCH] docker image: install php, composer Needs for bootstrapping composer package. --- scripts/setup-ubuntu.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index cadeba349..fe0840369 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -93,6 +93,10 @@ PACKAGES+=" libicu-dev" # Needed by php. PACKAGES+=" re2c" +# Needed by composer. +PACKAGES+=" php" +PACKAGES+=" composer" + # Needed by package rust. PACKAGES+=" libssl-dev" # Needed to build Rust PACKAGES+=" clang-10"