mirror of
https://github.com/chialab/docker-php.git
synced 2026-08-24 02:24:16 -05:00
Merge pull request #52 from chialab/issue/49-update-xdebug
Update XDebug to stable channel for PHP 7.3
This commit is contained in:
+2
-2
@@ -31,8 +31,8 @@ env:
|
||||
|
||||
install:
|
||||
- travis_wait 30 make build VERSION=${VERSION}
|
||||
- if [ "$NO_DEV" != "1" ]; then travis_wait 30 make -C dev build VERSION=${VERSION}; fi
|
||||
- if [ "$NO_DEV" != "1" ]; then make -C dev build VERSION=${VERSION}; fi
|
||||
|
||||
script:
|
||||
- make test VERSION=${VERSION}
|
||||
- if [ "$NO_DEV" != "1" ]; then travis_wait 30 make -C dev test VERSION=${VERSION}; fi
|
||||
- if [ "$NO_DEV" != "1" ]; then make -C dev test VERSION=${VERSION}; fi
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@ FROM chialab/php:7.3
|
||||
LABEL maintainer="dev@chialab.io"
|
||||
|
||||
# Install XDebug.
|
||||
RUN pecl install xdebug-2.7.0beta1 \
|
||||
RUN pecl install xdebug \
|
||||
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
|
||||
|
||||
@@ -2,5 +2,5 @@ FROM chialab/php:7.3-apache
|
||||
LABEL maintainer="dev@chialab.io"
|
||||
|
||||
# Install XDebug.
|
||||
RUN pecl install xdebug-2.7.0beta1 \
|
||||
RUN pecl install xdebug \
|
||||
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
|
||||
|
||||
@@ -2,5 +2,5 @@ FROM chialab/php:7.3-fpm
|
||||
LABEL maintainer="dev@chialab.io"
|
||||
|
||||
# Install XDebug.
|
||||
RUN pecl install xdebug-2.7.0beta1 \
|
||||
RUN pecl install xdebug \
|
||||
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@ FROM chialab/php:latest
|
||||
LABEL maintainer="dev@chialab.io"
|
||||
|
||||
# Install XDebug.
|
||||
RUN pecl install xdebug-2.7.0beta1 \
|
||||
RUN pecl install xdebug \
|
||||
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
|
||||
|
||||
Reference in New Issue
Block a user