From 5524b3dc0ce997db20d5679ff02c3b9ebe197454 Mon Sep 17 00:00:00 2001 From: lookshe Date: Tue, 29 Dec 2020 23:51:21 +0100 Subject: add memcache and rebuild --- php-7.4-opt/build.Dockerfile | 15 ++++++++++++++- php-7.4-opt/copy.Dockerfile | 1 + .../out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb | Bin 52332 -> 52326 bytes php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb | Bin 11069190 -> 11069150 bytes .../out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb | Bin 126146 -> 126154 bytes php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb | Bin 4279114 -> 4279132 bytes .../out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb | Bin 711002 -> 711014 bytes .../out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb | Bin 600708 -> 600690 bytes .../php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb | Bin 1171278 -> 1171262 bytes .../out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb | Bin 348480 -> 348478 bytes .../out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb | Bin 0 -> 49340 bytes .../out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb | Bin 922656 -> 922652 bytes php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb | Bin 20147152 -> 20146884 bytes 13 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb diff --git a/php-7.4-opt/build.Dockerfile b/php-7.4-opt/build.Dockerfile index 612b8cf..694cf0c 100644 --- a/php-7.4-opt/build.Dockerfile +++ b/php-7.4-opt/build.Dockerfile @@ -32,7 +32,8 @@ RUN apt-get update \ libtidy-dev \ libgd2-xpm-dev \ libmagickwand-dev \ - libmagickcore-dev + libmagickcore-dev \ + libmemcached-dev RUN wget https://cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz RUN tar xzf cmake-2.8.12.1.tar.gz RUN cd cmake-2.8.12.1 \ @@ -176,4 +177,16 @@ RUN cd /php-7.4.12/ext/apcu-5.1.19 \ && echo extension=apcu.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/apcu.ini \ && echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/apcu.ini >> files_to_add \ && checkinstall -y --pkgname $PACKAGE_NAME-apcu --include files_to_add +RUN cd /php-7.4.12/ext \ + && wget https://github.com/php-memcached-dev/php-memcached/archive/v3.1.5.tar.gz \ + && tar xzf v3.1.5.tar.gz \ + && cd php-memcached-3.1.5 \ + && $MAIN_PREFIX/bin/phpize \ + && ./configure --with-php-config=$MAIN_PREFIX/bin/php-config --disable-memcached-sasl \ + && make +RUN cd /php-7.4.12/ext/php-memcached-3.1.5 \ + && mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \ + && echo extension=memcached.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/memcached.ini \ + && echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/memcached.ini >> files_to_add \ + && checkinstall -y --pkgname $PACKAGE_NAME-memcached --include files_to_add diff --git a/php-7.4-opt/copy.Dockerfile b/php-7.4-opt/copy.Dockerfile index 01f5f75..3acc8dc 100644 --- a/php-7.4-opt/copy.Dockerfile +++ b/php-7.4-opt/copy.Dockerfile @@ -11,4 +11,5 @@ COPY --from=build-stage /krb5-1.17.2/src/php-7.4.12-opt-krb5_1-1_amd64.deb . COPY --from=build-stage /php-7.4.12/ext/imagick-3.4.4/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb . COPY --from=build-stage /php-7.4.12/ext/apcu-5.1.19/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb . COPY --from=build-stage /libsodium-1.0.18/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb . +COPY --from=build-stage /php-7.4.12/ext/php-memcached-3.1.5/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb . diff --git a/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb index 3dd1a35..343c2c3 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb index 5d1883e..ccfecc3 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb index dbed6cb..f48c7b3 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb index beb9b2e..e727e2a 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb index 1c54fd8..bb1b572 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb index 290529a..ead45ba 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb index 92363c3..54c792c 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb index 81d5ba8..f002586 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb new file mode 100644 index 0000000..99d19ea Binary files /dev/null and b/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb index 88b8366..a8abefc 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb differ diff --git a/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb index 2a5e892..33cb30c 100644 Binary files a/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb and b/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb differ -- cgit v1.2.3