php/8.2-rc/alpine3.15/zts/docker-php-entrypoint
2022-06-09 17:47:48 +02: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 "$@"