From a5c56f29b3839aa0df071671909fc12e7d456608 Mon Sep 17 00:00:00 2001 From: reddexx Date: Mon, 13 May 2024 08:54:20 +0200 Subject: [PATCH] Update Bookstack to 24.05 and Composer V2.2.23 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a442aa8..a864764 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:3 as bookstack -ENV BOOKSTACK_VERSION=24.02.3 +ENV BOOKSTACK_VERSION=24.05 RUN apk add --no-cache curl tar RUN set -x; \ curl -SL -o bookstack.tar.gz https://github.com/BookStackApp/BookStack/archive/v${BOOKSTACK_VERSION}.tar.gz \ @@ -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.1.12 +ARG COMPOSER_VERSION=2.2.23 RUN set -x; \ cd /var/www/bookstack \ && curl -sS https://getcomposer.org/installer | php -- --version=$COMPOSER_VERSION \