From 27dfbbfab1f1ffeb44e185b19293da60203984d1 Mon Sep 17 00:00:00 2001 From: "Shao Yu-Lung (Allen)" Date: Sat, 20 Mar 2021 17:49:21 +0800 Subject: [PATCH] Update Dockerfile sepecified pecl swoole version for php 7.1 --- php-fpm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index f32e8a7e..06fbcdf6 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -293,7 +293,7 @@ RUN set -eux; \ elif [ $(php -r "echo PHP_VERSION_ID - PHP_RELEASE_VERSION;") = "70000" ]; then \ pecl install swoole-4.3.5; \ elif [ $(php -r "echo PHP_VERSION_ID - PHP_RELEASE_VERSION;") = "70100" ]; then \ - pecl install swoole-4.6.0; \ + pecl install swoole-4.5.11; \ else \ pecl install swoole; \ fi; \