SHA256
1
0
forked from pool/php8-image
php8-image/docker-php-entrypoint

10 lines
118 B
Bash

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