Adding support for poppler-utils

This commit is contained in:
Dawid Makowski
2023-07-18 19:18:24 +02:00
parent b20c3884d2
commit ef5bc07fb3
7 changed files with 85 additions and 0 deletions

View File

@@ -210,6 +210,16 @@ RUN if [ ${INSTALL_AUDIOWAVEFORM} = true ]; then \
&& make install \
;fi
#####################################
# poppler-utils:
#####################################
USER root
ARG INSTALL_POPPLER_UTILS=false
RUN if [ ${INSTALL_POPPLER_UTILS} = true ]; then \
apk add --update --no-cache poppler-utils \
;fi
# Install Cassandra drivers:
ARG INSTALL_CASSANDRA=false