From b42ad1ae7ed3b450cf17e1fd9011dd3127d6525d Mon Sep 17 00:00:00 2001 From: larryeitel Date: Tue, 30 Aug 2016 11:26:54 -0600 Subject: [PATCH] fix workspace xdebug install bug - need to add apt-get update. --- workspace/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index bc0ef16e..97e3f03c 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -49,6 +49,7 @@ ARG INSTALL_XDEBUG=true ENV INSTALL_XDEBUG ${INSTALL_XDEBUG} RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands + apt-get update && \ apt-get install -y --force-yes php7.0-xdebug && \ sed -i 's/^/;/g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/laravel/vendor/bin/phpunit'" >> ~/.bashrc \