Files
php-docker-library/8.1/bookworm/zts/docker-php-entrypoint
Joseph Ferguson 7838b365f3 Add Debian bookworm, remove buster
Except 8.0 that doesn't support OpenSSL 3.x
2023-06-13 12:07:14 -07: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 "$@"