Skip to content

Commit e2b31d6

Browse files
author
Małgorzata Wicha
committed
Download xdebug package from pecl.php.net instead of xdebug.org.
1 parent e2f914f commit e2b31d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/php7.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN curl -o /tmp/composer-setup.php https://getcomposer.org/installer \
4343
&& php /tmp/composer-setup.php --no-ansi --install-dir=/usr/local/bin --filename=composer && rm -rf /tmp/composer-setup.php
4444

4545
# Setup XDebug
46-
RUN curl -fsSL 'https://xdebug.org/files/xdebug-2.4.0.tgz' -o xdebug.tar.gz \
46+
RUN curl -fsSL 'https://pecl.php.net/get/xdebug-2.4.0.tgz' -o xdebug.tar.gz \
4747
&& mkdir -p xdebug \
4848
&& tar -xf xdebug.tar.gz -C xdebug --strip-components=1 \
4949
&& rm xdebug.tar.gz \

docker/php7.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN curl -o /tmp/composer-setup.php https://getcomposer.org/installer \
4343
&& php /tmp/composer-setup.php --no-ansi --install-dir=/usr/local/bin --filename=composer && rm -rf /tmp/composer-setup.php
4444

4545
# Setup XDebug
46-
RUN curl -fsSL 'https://xdebug.org/files/xdebug-2.5.0.tgz' -o xdebug.tar.gz \
46+
RUN curl -fsSL 'https://pecl.php.net/get/xdebug-2.5.0.tgz' -o xdebug.tar.gz \
4747
&& mkdir -p xdebug \
4848
&& tar -xf xdebug.tar.gz -C xdebug --strip-components=1 \
4949
&& rm xdebug.tar.gz \

0 commit comments

Comments
 (0)