Merge pull request #1354 from taufek/tj-install-prestissimo

Install Prestissimo in Workspace
This commit is contained in:
Yu-Lung Shao (Allen)
2018-02-27 00:00:25 +08:00
committed by GitHub
5 changed files with 41 additions and 0 deletions

View File

@ -476,6 +476,19 @@ RUN if [ ${INSTALL_DEPLOYER} = true ]; then \
composer global require "deployer/deployer" \
;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:
#####################################