Skip to content

Commit 2f8d53e

Browse files
committed
php7.2 xdebug package
1 parent c496c38 commit 2f8d53e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

7.2/Dockerfile

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ RUN apt-get -yqq install \
8787
php7.2-memcache \
8888
php7.2-memcached \
8989
php7.2-redis \
90+
php7.2-xdebug \
9091
libapache2-mod-php7.2
9192

9293
# php7.2-mcrypt \
@@ -99,15 +100,15 @@ RUN \
99100
echo "date.timezone = \"$TZ\";" > /etc/php/7.2/cli/conf.d/timezone.ini
100101

101102
# PHP xdebug
102-
RUN \
103-
wget https://github.com/xdebug/xdebug/archive/master.zip && \
104-
unzip master.zip && \
105-
cd xdebug-master && \
106-
phpize7.2 && \
107-
./configure --enable-xdebug && \
108-
make && make install && \
109-
echo "zend_extension=xdebug.so" >> /etc/php/7.2/mods-available/xdebug.ini && \
110-
cd .. && rm -fr xdebug-master master.zip
103+
# RUN \
104+
# wget https://github.com/xdebug/xdebug/archive/master.zip && \
105+
# unzip master.zip && \
106+
# cd xdebug-master && \
107+
# phpize7.2 && \
108+
# ./configure --enable-xdebug && \
109+
# make && make install && \
110+
# echo "zend_extension=xdebug.so" >> /etc/php/7.2/mods-available/xdebug.ini && \
111+
# cd .. && rm -fr xdebug-master master.zip
111112

112113
# Install manually xhprof
113114
RUN \

0 commit comments

Comments
 (0)