Prepare sources

This commit is contained in:
Tristan Darricau 2016-02-01 22:13:15 +01:00
parent 6145949c5a
commit 793a7923c2

View file

@ -13,7 +13,11 @@ docker run \
--volume ${WORKING_DIR}:/data \
--volume ${COMPOSER_HOME}:/composer/ \
--workdir /data \
phpbb/build${IMAGES_TAG} sh -c 'cd phpBB; COMPOSER_HOME=/composer php ../composer.phar install --dev'
phpbb/build${IMAGES_TAG} sh -c '
cd phpBB &&
git config user.email "no-reply@phpbb.com" &&
git config user.name "phpBB CI" &&
COMPOSER_HOME=/composer php ../composer.phar install --dev'
docker run \
--user $(id -u):$(id -g) \