Quick fix: Increase PHP memory limit to let Docker tests pass

This commit is contained in:
Bubka 2024-03-16 11:28:20 +01:00
parent 1ac95d8439
commit c0d4f58680
2 changed files with 2 additions and 0 deletions

1
Dockerfile vendored
View File

@ -31,6 +31,7 @@ COPY . .
RUN mv .env.testing .env
RUN composer install
RUN php artisan key:generate
COPY docker/php-test.ini /usr/local/etc/php/php.ini
ENTRYPOINT [ "/srv/vendor/bin/phpunit" ]
FROM alpine:${ALPINE_VERSION}

1
docker/php-test.ini Normal file
View File

@ -0,0 +1 @@
memory_limit=2048M