From d43eb1f8ce93668a7e382f312b2bf631ad2ff025 Mon Sep 17 00:00:00 2001 From: ppom <> Date: Mon, 4 Sep 2023 11:17:31 +0200 Subject: [PATCH] fix abiword not working in container cc @rdelaage on alpine, plugin command (used in src/node/utils/Abiword.js at line 31) is not installed by defaut. Add this plugin when installing abiword. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a7ab9ab9..8328b309d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ RUN \ apk add \ ca-certificates \ git \ - ${INSTALL_ABIWORD:+abiword} \ + ${INSTALL_ABIWORD:+abiword abiword-plugin-command} \ ${INSTALL_SOFFICE:+libreoffice openjdk8-jre libreoffice-common} USER etherpad