From 4f0ee3850826a01186046141be9e1a22a718933e Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 3 Nov 2019 18:55:37 +0000 Subject: [PATCH] slightly more verbose docker install --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd06ba89..af444e96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,8 @@ RUN composer install COPY . /app/ RUN mkdir -p data/config && \ echo " data/config/auto_install.conf.php && \ - php index.php && \ - ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ - rm -rf data + echo === Installing === && php index.php && \ + echo === Smoke Test === && php index.php get-page /post/list && \ + echo === Unit Tests === && ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ + echo === Cleaning === && rm -rf data CMD "/app/tests/docker-init.sh"