From 13064859d82c13e90e06d84bcf32b5e8162a0cfb Mon Sep 17 00:00:00 2001 From: Markus Opolka Date: Mon, 30 Jul 2018 09:27:26 +0200 Subject: [PATCH] Fix Travis build --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b7cd2cd..211ca69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,6 @@ services: matrix: include: - env: TAG=martialblog/limesurvey-apache - script: docker build -q -t $TAG -f apache/Dockerfile . && tests/run.sh $TAG + script: cd apache; docker build -q -t $TAG . && cd ..; ./tests/run.sh $TAG - env: TAG=martialblog/limesurvey-fpm - script: docker build -q -t $TAG -f fpm/Dockerfile . && tests/run.sh $TAG + script: cd fpm; docker build -q -t $TAG . && cd ..; ./tests/run.sh $TAG