php/8.0/alpine3.13/cli/docker-php-entrypoint
GreyXor c70a901d7f
Add Alpine 3.13 (#1117)
This also removes Alpine 3.11, per the support policy in this repository.
2021-01-15 08:53:26 -08: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 "$@"