fix: automatically copy PHPUnit files

This commit is contained in:
Oliver Davies 2023-03-09 11:51:44 +00:00
parent 96a7cd3cef
commit 8b2181525d

View file

@ -36,6 +36,8 @@ RUN apt-get update -yqq \
RUN docker-php-ext-install {{ dockerfile.stages.build.extensions.install | join(' ') }}
{% endif %}
COPY --chown=app:app phpunit.xml* ./
{% if dockerfile.stages.build.extra_files %}
COPY --chown=app:app {{ dockerfile.stages.build.extra_files | join(" ") }} ./
{% endif %}