fix(dockerfile): improve readability

This commit is contained in:
Glenn Y. Rolland 2024-05-05 19:06:26 +02:00
parent 9dafd41213
commit e1069a8e38

View file

@ -50,20 +50,22 @@ RUN apt-get update \
##
## GMP Support (for bookmark extension)
##
RUN apt-get update && apt-get install -y libgmp3-dev \
RUN apt-get update \
&& apt-get install -y libgmp3-dev \
&& docker-php-ext-install gmp
##
## BZ2 Support (for nextcloud)
##
RUN apt-get update && apt-get install -y libbz2-dev \
RUN apt-get update \
&& apt-get install -y libbz2-dev \
&& docker-php-ext-install bz2
##
## SVG and LibreSign support
##
RUN apt-get update && apt-get install -y \
libmagickcore-6.q16-6-extra \
RUN apt-get update \
&& apt-get install -y libmagickcore-6.q16-6-extra \
&& rm -rf /var/lib/apt/lists/*
RUN sed -i'' 's|.*<policy domain="coder".*"PDF".*|<policy domain="coder" rights="read \| write" pattern="PDF" />|g' \