Fix a bug that prevents yarn from installing

This commit is contained in:
Alexandre Thomas 2016-11-09 16:14:49 +01:00
parent 3f157a3277
commit 44045f85e6
2 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,8 @@ services:
ports:
- "2222:22"
tty: true
environment:
- PATH=$PATH:$HOME/.yarn/bin:/var/www/vendor/bin:$HOME/.nvm/versions/node/v7.1.0/bin
### PHP-FPM Container #######################################

View File

@ -191,6 +191,7 @@ ARG INSTALL_YARN=false
ENV INSTALL_YARN ${INSTALL_YARN}
RUN if [ ${INSTALL_YARN} = true ]; then \
export PATH=$PATH:/home/laradock/.nvm/versions/node/v7.1.0/bin && \
curl -o- -L https://yarnpkg.com/install.sh | bash && \
echo "" >> ~/.bashrc && \
echo 'export PATH="$HOME/.yarn/bin:$PATH"' >> ~/.bashrc \