From 74ca3b82a1e96e559118932ab60305da4d005ef3 Mon Sep 17 00:00:00 2001 From: desaroger Date: Fri, 23 Feb 2018 22:02:57 +0100 Subject: [PATCH] Fix issue installing Aerospike in php-fpm with php 7.2 --- php-fpm/Dockerfile-72 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-fpm/Dockerfile-72 b/php-fpm/Dockerfile-72 index 9951e1f2..53ce88cc 100644 --- a/php-fpm/Dockerfile-72 +++ b/php-fpm/Dockerfile-72 @@ -228,8 +228,8 @@ RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ apt-get update -yqq && \ apt-get -y install sudo wget && \ - # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ + # Install the php aerospike extension (using 7.2.0-in-progress branch until support for 7.2 on master) + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/7.2.0-in-progress.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \