php/7.2-rc/zts/alpine/docker-php-entrypoint

10 lines
118 B
Plaintext
Raw Normal View History

2017-06-09 22:54:54 +02:00
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php "$@"
fi
exec "$@"