From f9c7e4b8e4dfb7a74dbb077ac3e2129a50b86621 Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Mon, 21 Aug 2017 11:55:12 -0400 Subject: [PATCH] Fix PHP 7.2 builds --- 7.2/Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/7.2/Dockerfile b/7.2/Dockerfile index 68ceccb..85e5f00 100644 --- a/7.2/Dockerfile +++ b/7.2/Dockerfile @@ -1,9 +1,12 @@ -FROM php:7.2-rc +FROM php:7.2-rc-zts LABEL maintainer "Tony Blyler " -RUN pecl install xdebug && \ +# FIXME get xdebug working for PHP 7.2 (not officially supported yet) +# pecl install xdebug +RUN pecl install pthreads && \ docker-php-ext-install pcntl sockets && \ - docker-php-ext-enable xdebug && \ + docker-php-ext-enable pthreads && \ + # docker-php-ext-enable xdebug && \ apt-get update && \ apt-get install -y \ git \