From 4169a9b357f7a319782e1ffa8f26b0dedf490e96 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Tue, 27 Feb 2018 08:12:16 +0800 Subject: [PATCH] Support Prestissimo --- workspace/Dockerfile-72 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/workspace/Dockerfile-72 b/workspace/Dockerfile-72 index 1099373..bb646df 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: #####################################