1#================= 2# PHP dependencies 3 4# Install dependencies 5 6RUN apt-get update && apt-get install -y ${'\\'} 7 git php5 php5-dev unzip 8 9RUN wget https://phar.phpunit.de/phpunit-5.7.27.phar && ${'\\'} 10 mv phpunit-5.7.27.phar /usr/local/bin/phpunit && ${'\\'} 11 chmod +x /usr/local/bin/phpunit 12