mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 08:32:42 +00:00
Fix installing gRPC on Alpine 3.7/3.8 and Stretch (#726)
This commit is contained in:
parent
211f97e73f
commit
baadbc2c9f
1 changed files with 9 additions and 7 deletions
|
@ -2742,6 +2742,15 @@ installRemoteModule() {
|
|||
if test -z "$installRemoteModule_version"; then
|
||||
if test $PHP_MAJMIN_VERSION -le 506; then
|
||||
installRemoteModule_version=1.33.1
|
||||
else
|
||||
case "$DISTRO_VERSION" in
|
||||
debian@8)
|
||||
installRemoteModule_version=1.46.3
|
||||
;;
|
||||
alpine@3.7 | alpine@3.8 | debian@9) # With newer version: "This package requires GCC 7 or higher"
|
||||
installRemoteModule_version=1.52.1
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
if test -z "$installRemoteModule_version" || test "$installRemoteModule_version" = 1.35.0; then
|
||||
|
@ -2751,13 +2760,6 @@ installRemoteModule() {
|
|||
;;
|
||||
esac
|
||||
fi
|
||||
if test -z "$installRemoteModule_version"; then
|
||||
case "$DISTRO_VERSION" in
|
||||
debian@8)
|
||||
installRemoteModule_version=1.46.3
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
http)
|
||||
if test -z "$installRemoteModule_version"; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue