mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-29 09:05:52 +00:00
b433f2c0cc
Signed-off-by: Gong Sophia <sophia.gong@intel.com>
10 lines
122 B
Bash
10 lines
122 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# first arg is `-f` or `--some-option`
|
|
if [ "${1#-}" != "$1" ]; then
|
|
set -- php-fpm "$@"
|
|
fi
|
|
|
|
exec "$@"
|