├── .gitignore ├── README.md ├── php80.Dockerfile ├── php81.Dockerfile ├── php82-arm.Dockerfile ├── php82.Dockerfile ├── php83-arm.Dockerfile ├── php83.Dockerfile ├── php84-arm.Dockerfile ├── php84.Dockerfile ├── php85-arm.Dockerfile ├── php85.Dockerfile ├── runtime ├── bootstrap ├── bootstrap.php └── php.ini └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build.testing.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/README.md -------------------------------------------------------------------------------- /php80.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php80.Dockerfile -------------------------------------------------------------------------------- /php81.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php81.Dockerfile -------------------------------------------------------------------------------- /php82-arm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php82-arm.Dockerfile -------------------------------------------------------------------------------- /php82.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php82.Dockerfile -------------------------------------------------------------------------------- /php83-arm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php83-arm.Dockerfile -------------------------------------------------------------------------------- /php83.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php83.Dockerfile -------------------------------------------------------------------------------- /php84-arm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php84-arm.Dockerfile -------------------------------------------------------------------------------- /php84.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php84.Dockerfile -------------------------------------------------------------------------------- /php85-arm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php85-arm.Dockerfile -------------------------------------------------------------------------------- /php85.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/php85.Dockerfile -------------------------------------------------------------------------------- /runtime/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/runtime/bootstrap -------------------------------------------------------------------------------- /runtime/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/runtime/bootstrap.php -------------------------------------------------------------------------------- /runtime/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/runtime/php.ini -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/vapor-dockerfiles/HEAD/test.sh --------------------------------------------------------------------------------