mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
Add package and PHP extension to PHP docker
This commit is contained in:
parent
ce4c2ead4b
commit
2068b4458d
1 changed files with 7 additions and 2 deletions
|
@ -13,16 +13,21 @@ RUN apt-get update && apt-get install -y \
|
||||||
libsqlite3-dev \
|
libsqlite3-dev \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
libmagickwand-dev \
|
libmagickwand-dev \
|
||||||
libtidy-dev
|
libtidy-dev \
|
||||||
|
git
|
||||||
RUN docker-php-ext-install \
|
RUN docker-php-ext-install \
|
||||||
iconv \
|
iconv \
|
||||||
mbstring \
|
mbstring \
|
||||||
|
gd \
|
||||||
intl \
|
intl \
|
||||||
pdo \
|
pdo \
|
||||||
pdo_mysql \
|
pdo_mysql \
|
||||||
pdo_pgsql \
|
pdo_pgsql \
|
||||||
pdo_sqlite \
|
pdo_sqlite \
|
||||||
tidy
|
sockets \
|
||||||
|
tidy \
|
||||||
|
bcmath \
|
||||||
|
zip
|
||||||
|
|
||||||
RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick
|
RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue