mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 06:07:29 +02:00
8 lines
208 B
Bash
Executable File
8 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export PHP_IMAGE=registry.fakecake.org/infra/php8.3-alpine3.20
|
|
|
|
docker run --rm -v $(pwd):/app \
|
|
--workdir /app ${PHP_IMAGE} \
|
|
php83 -d memory_limit=-1 ./vendor/bin/phpunit --exclude integration
|