Support Prestissimo

This commit is contained in:
Shao Yu Lung 2018-02-27 08:12:16 +08:00
parent 8d0bd8505c
commit 4169a9b357
1 changed files with 13 additions and 0 deletions

View File

@ -471,6 +471,19 @@ RUN if [ ${INSTALL_DEPLOYER} = true ]; then \
chmod +x /usr/local/bin/dep \
;fi
#####################################
# Prestissimo:
#####################################
USER laradock
ARG INSTALL_PRESTISSIMO=false
ENV INSTALL_PRESTISSIMO ${INSTALL_PRESTISSIMO}
RUN if [ ${INSTALL_PRESTISSIMO} = true ]; then \
# Install Prestissimo
composer global require "hirak/prestissimo" \
;fi
#####################################
# Linuxbrew:
#####################################