Adding git config to the docker file

This commit is contained in:
Dan Cryer 2014-05-12 16:36:18 +01:00
parent 29aeedb033
commit d4a886f747

View file

@ -10,8 +10,8 @@ RUN apt-get update
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"
RUN git config --global user.name "PHPCI"
RUN git config --global user.email "hello@php.ci"
ADD ./ /phpci