From 26326985431fddc9f49d716fba8400baf68aa75a Mon Sep 17 00:00:00 2001 From: ppom <38916722+ppom0@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:55:21 +0200 Subject: [PATCH] fix abiword not working in container (#5907) 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. Co-authored-by: ppom <> --- 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