Merge pull request #700 from DanielOaks/dockerfile-changes

Fix Dockerfile script not being marked as executable
This commit is contained in:
Shish 2020-03-08 18:46:36 +00:00 committed by GitHub
commit 30a660cebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,4 +17,5 @@ RUN echo '=== Installing ===' && mkdir -p data/config && echo "<?php \$dsn = \"s
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
RUN chmod +x /app/tests/docker-init.sh
CMD "/app/tests/docker-init.sh"