From cb70eeee05ccd3dcc0b0430444a38ca4cd6c481d Mon Sep 17 00:00:00 2001 From: andremohr <62677846+andremohr@users.noreply.github.com> Date: Thu, 13 Jun 2024 16:24:28 +0200 Subject: [PATCH] fix: Correct BOOKSTACK_VERSION in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37d474c..caaf657 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:3 as bookstack -ENV BOOKSTACK_VERSION=24.05.1 +ENV BOOKSTACK_VERSION=24.05.2 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 \