php/7.4/docker-php-entrypoint
lbrinkhaus 9f805c19cb
Some checks failed
continuous-integration/drone Build is failing
Add 7.4 PHP and create Drone Pipeline
2022-01-11 19:10:20 +01:00

9 lines
121 B
Bash

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