From d6c7857c6bd372614f7081f331d16815580a6e72 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 27 Jan 2020 20:06:19 +0000 Subject: [PATCH] syntax --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 641079f1..3194a587 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN composer install COPY . /app/ RUN mkdir -p data/config && \ echo " data/config/auto_install.conf.php && \ - 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 && \ - echo === Coverage === && ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ - echo === Cleaning === && 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 && \ + echo '=== Coverage ===' && ./vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text && \ + echo '=== Cleaning ===' && rm -rf data CMD "/app/tests/docker-init.sh"