diff --git a/Dockerfile b/Dockerfile index 8bd8541..0941082 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,6 +58,12 @@ RUN \ tar xf \ /tmp/znc-clientbuffer.tar.gz -C \ /tmp/znc/modules --strip-components=1 && \ + curl -o \ + /tmp/znc-palaver.tar.gz -L \ + https://github.com/cocodelabs/znc-palaver/archive/master.tar.gz && \ + tar xf \ + /tmp/znc-palaver.tar.gz -C \ + /tmp/znc/modules --strip-components=1 && \ cd /tmp/znc && \ export CFLAGS="$CFLAGS -D_GNU_SOURCE" && \ ./configure \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 21e6d76..5ec384c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -58,6 +58,12 @@ RUN \ tar xf \ /tmp/znc-clientbuffer.tar.gz -C \ /tmp/znc/modules --strip-components=1 && \ + curl -o \ + /tmp/znc-palaver.tar.gz -L \ + https://github.com/cocodelabs/znc-palaver/archive/master.tar.gz && \ + tar xf \ + /tmp/znc-palaver.tar.gz -C \ + /tmp/znc/modules --strip-components=1 && \ cd /tmp/znc && \ export CFLAGS="$CFLAGS -D_GNU_SOURCE" && \ ./configure \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 68aa423..bc8bc3c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -58,6 +58,12 @@ RUN \ tar xf \ /tmp/znc-clientbuffer.tar.gz -C \ /tmp/znc/modules --strip-components=1 && \ + curl -o \ + /tmp/znc-palaver.tar.gz -L \ + https://github.com/cocodelabs/znc-palaver/archive/master.tar.gz && \ + tar xf \ + /tmp/znc-palaver.tar.gz -C \ + /tmp/znc/modules --strip-components=1 && \ cd /tmp/znc && \ export CFLAGS="$CFLAGS -D_GNU_SOURCE" && \ ./configure \ diff --git a/README.md b/README.md index 7d89c59..e29d674 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **02.11.19:** - Add znc-palaver module. * **28.06.19:** - Rebasing to alpine 3.10. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **22.02.19:** - Rebasing to alpine 3.9. diff --git a/readme-vars.yml b/readme-vars.yml index fb02ad3..6ebe558 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -52,6 +52,7 @@ app_setup_block: | # changelog changelogs: + - { date: "02.11.19:", desc: "Add znc-palaver module." } - { date: "28.06.19:", desc: "Rebasing to alpine 3.10." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }