mirror of
https://github.com/danog/php.git
synced 2024-12-02 09:27:58 +01:00
d4616116cb
* Add Alpine 3.17 variant for PHP >= 8.1 Also remove Alpine 3.15 * Remove old Alpine 3.13 reference from Dockerfile-linux.template * Improve Alpine version matching in versions.sh
10 lines
118 B
Bash
Executable File
Generated
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 "$@"
|