We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca413ed commit bcb7491Copy full SHA for bcb7491
3 files changed
.gitignore
@@ -1 +1,2 @@
1
-/logs
+/logs
2
+.env
docker-compose.yml
@@ -153,7 +153,10 @@ services:
153
### Workspace Utilities Container ###########################
154
155
workspace:
156
- build: ./workspace
+ build:
157
+ context: ./workspace
158
+ args:
159
+ INSTALL_PRESTISSIMO: ${INSTALL_PRESTISSIMO}
160
volumes_from:
161
- application
162
tty: true
workspace/Dockerfile
@@ -88,3 +88,9 @@ RUN . ~/.bashrc
88
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
89
90
WORKDIR /var/www/laravel
91
+
92
+# Install optional software
93
+ARG INSTALL_PRESTISSIMO=false
94
+RUN if [ "$INSTALL_PRESTISSIMO" = true ] ; then \
95
+ composer global require "hirak/prestissimo:^0.3"; \
96
+ fi
0 commit comments