php/7.2/alpine3.6/zts/docker-php-entrypoint
2017-11-30 15:25:21 +01:00

10 lines
118 B
Bash
Executable File

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