From 71719968437d5cc243aa488d4142a29937bb4a1b Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 18 May 2016 09:05:45 +0300 Subject: [PATCH] replace composer path --- workspace/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index bff93260..e604d5c4 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -40,7 +40,7 @@ RUN curl -s http://getcomposer.org/installer | php \ # Install the Laravel Installer RUN composer.phar global require "laravel/installer" \ - && echo "export PATH='$PATH:$HOME/.composer/vendor/bin'" >> ~/.bashrc + && echo "export PATH='~/.composer/vendor/bin:$PATH'" >> ~/.bashrc # Source the bashrc to apply updates RUN . ~/.bashrc