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"