From c7424dfcb3bbc577db911d6b500cd9acd5183de7 Mon Sep 17 00:00:00 2001 From: Hugo Tacla <87522622+omni-htg@users.noreply.github.com> Date: Thu, 9 Oct 2025 12:45:52 +0200 Subject: [PATCH] feat(Dockerfile): add basic LibreOffice Hyphenation support --- build/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build/Dockerfile b/build/Dockerfile index 146a6e18..df8237d3 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -175,6 +175,20 @@ RUN \ # Cleanup. rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN \ + # Install Hyphenation for LibreOffice. + # Credits: https://wiki.archlinux.org/title/LibreOffice. + apt-get update -qq &&\ + apt-get upgrade -yqq &&\ + DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends \ + hyphen-af hyphen-as hyphen-be hyphen-bg hyphen-bn hyphen-ca hyphen-cs hyphen-da hyphen-de hyphen-el \ + hyphen-en-gb hyphen-en-us hyphen-eo hyphen-es hyphen-fr hyphen-gl hyphen-gu hyphen-hi hyphen-hr hyphen-hu \ + hyphen-id hyphen-is hyphen-it hyphen-kn hyphen-lt hyphen-lv hyphen-ml hyphen-mn hyphen-mr hyphen-nl \ + hyphen-no hyphen-or hyphen-pa hyphen-pl hyphen-pt-br hyphen-pt-pt hyphen-ro hyphen-ru hyphen-sk hyphen-sl \ + hyphen-sr hyphen-sv hyphen-ta hyphen-te hyphen-th hyphen-uk hyphen-zu &&\ + # Cleanup. + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + RUN \ # Install Chromium. apt-get update -qq &&\