From 907b831d73c75e4d0bb5e10b12e5549cc0ca8bb2 Mon Sep 17 00:00:00 2001 From: Florestan Bredow Date: Wed, 21 Dec 2016 10:43:36 +0100 Subject: [PATCH] =?UTF-8?q?Met=20=C3=A0=20jour=20xdebug=20vers=20la=20vers?= =?UTF-8?q?ion=202.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php-fpm/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index db041e6..249e174 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -1,10 +1,10 @@ FROM php:7-fpm -RUN cd /tmp/ && \ - curl -O https://xdebug.org/files/xdebug-2.4.1.tgz && \ - tar zxf xdebug-2.4.1.tgz && \ +RUN curl -o /tmp/xdebug.tgz https://xdebug.org/files/xdebug-2.5.0.tgz && \ mkdir -p /usr/src/php/ext/xdebug && \ - mv xdebug-2.4.1/* /usr/src/php/ext/xdebug/ + tar xzf /tmp/xdebug.tgz -C /usr/src/php/ext/xdebug/ && \ + rm /tmp/xdebug.tgz && \ + mv /usr/src/php/ext/xdebug/xdebug*/* /usr/src/php/ext/xdebug/ RUN apt-get update && apt-get install -y \ ssmtp \