php/8.3-rc/alpine3.17/zts/docker-php-entrypoint
2023-06-06 21:12:14 +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 "$@"