From 69c01a0cf8e112d8fc6a843d2e55ed9e780c6746 Mon Sep 17 00:00:00 2001 From: Rick Henry Date: Mon, 13 May 2024 08:03:05 +0100 Subject: [PATCH] feat: update Composer to latest release Documentation states that running the latest version - rather than close to the required version - is best practise, so update that. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a864764..15c7abe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ COPY bookstack.conf /etc/apache2/sites-available/000-default.conf COPY --from=bookstack --chown=33:33 /bookstack/ /var/www/bookstack/ -ARG COMPOSER_VERSION=2.2.23 +ARG COMPOSER_VERSION=2.7.6 RUN set -x; \ cd /var/www/bookstack \ && curl -sS https://getcomposer.org/installer | php -- --version=$COMPOSER_VERSION \