php/7.3/alpine3.9/zts/docker-php-entrypoint
2019-02-01 13:37:56 -08: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 "$@"