Skip to content
Snippets Groups Projects
Commit b2ef34ae authored by Erick Hitter's avatar Erick Hitter
Browse files

Test adding disabled Xdebug

parent b4d1f4c3
No related branches found
No related tags found
1 merge request!25Add Xdebug
Pipeline #4837 failed with stages
in 6 minutes and 44 seconds
......@@ -8,7 +8,9 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN docker-php-ext-install mbstring mysqli intl gd zip bz2 xdebug && sudo phpdismod xdebug
RUN docker-php-ext-install mbstring mysqli intl gd zip bz2 \
&& pecl install xdebug \
&& sudo phpdismod xdebug
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment