FROM ubuntu:14.04 MAINTAINER Dan Cryer dan.cryer@block8.co.uk RUN echo "deb http://ppa.launchpad.net/ondrej/php5/ubuntu trusty main" >> /etc/apt/sources.list RUN echo "deb http://archive.ubuntu.com/ubuntu/ precise universe" >> /etc/apt/sources.list RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C E5267A6C 0xcbcb082a1bb943db RUN apt-get update # Install PHP: RUN apt-get install -qy git-core php5-common php5-cli php5-curl php5-imap php5-mysqlnd # Give Git some fake user details to prevent it asking when trying to test merges: RUN git config --global user.name "PHPCI" RUN git config --global user.email "hello@php.ci" ADD ./ /phpci RUN php -r "readfile('https://getcomposer.org/installer');" | php RUN mv composer.phar /phpci/composer CMD /phpci/daemonise phpci:daemonise