Met à jour xdebug vers la version 2.5.0

This commit is contained in:
2016-12-21 10:43:36 +01:00
parent 3a7a9b6e3b
commit 907b831d73

View File

@@ -1,10 +1,10 @@
FROM php:7-fpm FROM php:7-fpm
RUN cd /tmp/ && \ RUN curl -o /tmp/xdebug.tgz https://xdebug.org/files/xdebug-2.5.0.tgz && \
curl -O https://xdebug.org/files/xdebug-2.4.1.tgz && \
tar zxf xdebug-2.4.1.tgz && \
mkdir -p /usr/src/php/ext/xdebug && \ 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 \ RUN apt-get update && apt-get install -y \
ssmtp \ ssmtp \