php/8.2-rc/buster/zts/docker-php-entrypoint

10 lines
118 B
Plaintext
Raw Normal View History

2023-01-19 14:46:38 +01:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php "$@"
fi
exec "$@"