fix an error missed COMPOSER_GLOBAL_INSTALL
This commit is contained in:
parent
d5ffc04034
commit
11f7cfe729
|
@ -74,7 +74,7 @@ ADD ./composer.json /root/.composer/composer.json
|
|||
# Check if global install need to be runned
|
||||
ARG COMPOSER_GLOBAL_INSTALL=true
|
||||
ENV COMPOSER_GLOBAL_INSTALL ${COMPOSER_GLOBAL_INSTALL}
|
||||
RUN if [ ${INSTALL_PRESTISSIMO} = true ]; then \
|
||||
RUN if [ ${COMPOSER_GLOBAL_INSTALL} = true ]; then \
|
||||
# run the install
|
||||
composer global install \
|
||||
;fi
|
||||
|
|
Loading…
Reference in New Issue