diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index d7e15c69..cd106d32 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -2001,7 +2001,7 @@ To install npm-check-updates CLI [here](https://www.npmjs.com/package/npm-check-
-## Install poppler-utils +## Install `poppler-utils` (and `antiword` combined) Poppler is a PDF rendering library based on Xpdf PDF viewer. @@ -2019,6 +2019,8 @@ This package contains command line utilities (based on Poppler) for getting info * pdftotext -- text extraction * pdfunite -- document merging tool +`poppler-utils` is often used by popular PDF/DOC parsing packages in combination with `antiword`, hence both are installed when flags in `.env` are set. + To install `poppler-utils` [(more here)](https://packages.debian.org/sid/poppler-utils) in any of the `workspace/php-fpm/php-worker/laravel-horizon` container 1 - Open the `.env` file diff --git a/laravel-horizon/Dockerfile b/laravel-horizon/Dockerfile index 66bfc87b..29218380 100644 --- a/laravel-horizon/Dockerfile +++ b/laravel-horizon/Dockerfile @@ -218,7 +218,7 @@ USER root ARG INSTALL_POPPLER_UTILS=false RUN if [ ${INSTALL_POPPLER_UTILS} = true ]; then \ - apk add --update --no-cache poppler-utils \ + apk add --update --no-cache poppler-utils antiword \ ;fi # Install Cassandra drivers: diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index f1052f1a..f5249240 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -1044,7 +1044,7 @@ USER root ARG INSTALL_POPPLER_UTILS=false RUN if [ ${INSTALL_POPPLER_UTILS} = true ]; then \ - apt-get -y install poppler-utils \ + apt-get -y install poppler-utils antiword \ ;fi ##################################### diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile index 13edf39d..19face50 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile @@ -271,7 +271,7 @@ USER root ARG INSTALL_POPPLER_UTILS=false RUN if [ ${INSTALL_POPPLER_UTILS} = true ]; then \ - apk add --update --no-cache poppler-utils \ + apk add --update --no-cache poppler-utils antiword \ ;fi # Install AMQP: diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 6a63c4b5..01a46cbd 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -1489,7 +1489,7 @@ USER root ARG INSTALL_POPPLER_UTILS=false RUN if [ ${INSTALL_POPPLER_UTILS} = true ]; then \ - apt-get -y install poppler-utils \ + apt-get -y install poppler-utils antiword \ ;fi #####################################