Skip to content
Snippets Groups Projects

Add Xdebug

Merged Erick Hitter requested to merge add/5-xdebug into master
Files
8
+ 4
2
@@ -29,11 +29,13 @@ RUN docker-php-ext-install \
gd \
zip \
bz2 \
&& pecl install xdebug \
&& php -m
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& chmod +x /usr/local/bin/composer
&& chmod +x /usr/local/bin/composer \
&& composer --version \
&& curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash \
&& nvm --version
ENV PATH=/root/.composer/vendor/bin:$HOME/.composer/vendor/bin:$PATH
Loading