diff --git a/workspace/Dockerfile-72 b/workspace/Dockerfile-72 index 1099373e..bb646dff 100644 --- a/workspace/Dockerfile-72 +++ b/workspace/Dockerfile-72 @@ -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: #####################################