When trying to run the composer install script in the php official docker container (php:5.6-apache) the command line seems to just hang waiting for input
the command I am trying to run is the following
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
and if composer is manually installed in the /usr/bin directory and ran using
composer
the same thing happens. PHP seems to hang waiting for input though you can ctrl-c and escape to the terminal at any time. I have tried installing
apt-get install -y php5-cli
but that didn't help. Any Ideas?