fix(dockerfile): improve readability
This commit is contained in:
parent
9dafd41213
commit
e1069a8e38
1 changed files with 6 additions and 4 deletions
10
Dockerfile
10
Dockerfile
|
@ -50,20 +50,22 @@ RUN apt-get update \
|
||||||
##
|
##
|
||||||
## GMP Support (for bookmark extension)
|
## 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
|
&& docker-php-ext-install gmp
|
||||||
|
|
||||||
##
|
##
|
||||||
## BZ2 Support (for nextcloud)
|
## 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
|
&& docker-php-ext-install bz2
|
||||||
|
|
||||||
##
|
##
|
||||||
## SVG and LibreSign support
|
## SVG and LibreSign support
|
||||||
##
|
##
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update \
|
||||||
libmagickcore-6.q16-6-extra \
|
&& apt-get install -y libmagickcore-6.q16-6-extra \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN sed -i'' 's|.*<policy domain="coder".*"PDF".*|<policy domain="coder" rights="read \| write" pattern="PDF" />|g' \
|
RUN sed -i'' 's|.*<policy domain="coder".*"PDF".*|<policy domain="coder" rights="read \| write" pattern="PDF" />|g' \
|
||||||
|
|
Loading…
Reference in a new issue