From e0f46b81d6e70b3a05a8b1bc1e0677ba056342fc Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 16 Sep 2024 10:50:33 +0200 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7dd645..14a6a8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,9 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \ sha256sum -c "${COMPONENT}.tar.gz.sha256" ; \ tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' ; \ rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \ - done + done ; \ + curl -SsLf "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" -O ; \ + tar -zxf "dokuwiki-stable.tgz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' RUN apt-get update && apt-get upgrade -y && \ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami