php/8.2/alpine3.17/cli/docker-php-entrypoint
Tim Düsterhus cc901e9594
Add PHP 8.2.0 (#1353)
* Add PHP 8.2.0

* Update generate-stackbrew-library.sh
2022-12-08 08:54:31 -08:00

10 lines
118 B
Bash
Executable File
Generated

#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php "$@"
fi
exec "$@"