Adding git config to the docker file

This commit is contained in:
Dan Cryer 2014-05-12 16:35:35 +01:00
parent a64add4bf6
commit 63b82d6afe

View file

@ -9,6 +9,10 @@ RUN apt-get update
# Install PHP:
RUN apt-get install -qy git-core php5-common php5-cli php5-curl php5-imap php5-mcrypt php5-mysqlnd
# Give Git some fake user details to prevent it asking when trying to test merges:
git config --global user.name "PHPCI"
git config --global user.email "hello@php.ci"
ADD ./ /phpci
CMD /phpci/daemonise phpci:daemonise