From 10ce4d982731b533c5d178f5f9e68ca70f225819 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 16 Sep 2024 10:34:48 +0200 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c175a79..8dd1490 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \ "php-8.2.21-2-linux-${OS_ARCH}-debian-12" \ "apache-2.4.62-0-linux-${OS_ARCH}-debian-12" \ "libphp-8.2.21-2-linux-${OS_ARCH}-debian-12" \ - "dokuwiki-20240206.1.0-10-linux-${OS_ARCH}-debian-12" \ + #"dokuwiki-20240206.1.0-10-linux-${OS_ARCH}-debian-12" \ ) ; \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ @@ -42,7 +42,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