diff --git a/Dockerfile b/Dockerfile index 6828f40b..bcea9c17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -93,7 +93,7 @@ ENTRYPOINT [ "docker-entrypoint.sh" ] FROM hashtopolis-server-base as hashtopolis-server-dev # Setting up development requirements, install xdebug -RUN yes | pecl install xdebug-3.4.0beta1 && docker-php-ext-enable xdebug \ +RUN yes | pecl install xdebug && docker-php-ext-enable xdebug \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.mode = debug" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.start_with_request = yes" >> /usr/local/etc/php/conf.d/xdebug.ini \