Merge pull request #1402 from bestlong/workspace-php72-prestissimo
Support Prestissimo
This commit is contained in:
commit
a797d67f14
|
@ -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:
|
||||
#####################################
|
||||
|
|
Loading…
Reference in New Issue