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 \
|
chmod +x /usr/local/bin/dep \
|
||||||
;fi
|
;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:
|
# Linuxbrew:
|
||||||
#####################################
|
#####################################
|
||||||
|
|
Loading…
Reference in New Issue