We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9caae commit 88c24d3Copy full SHA for 88c24d3
Dockerfile
@@ -51,9 +51,10 @@ COPY bookstack.conf /etc/apache2/sites-available/000-default.conf
51
52
COPY --from=bookstack --chown=33:33 /bookstack/ /var/www/bookstack/
53
54
+ARG COMPOSER_VERSION=1.10.16
55
RUN set -x; \
56
cd /var/www/bookstack \
- && curl -sS https://getcomposer.org/installer | php \
57
+ && curl -sS https://getcomposer.org/installer | php -- --version=$COMPOSER_VERSION \
58
&& /var/www/bookstack/composer.phar global -v require hirak/prestissimo \
59
&& /var/www/bookstack/composer.phar install -v -d /var/www/bookstack/ \
60
&& /var/www/bookstack/composer.phar global -v remove hirak/prestissimo \
0 commit comments