]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - docker/php/Dockerfile
Add package and PHP extension to PHP docker
[github/wallabag/wallabag.git] / docker / php / Dockerfile
index ffdf33c96a508e1cac6f1ea61418d31aa799e093..c43e07fd8190366a711fde0ea8c00ad1afffb6c0 100644 (file)
@@ -13,16 +13,21 @@ RUN apt-get update && apt-get install -y \
         libsqlite3-dev \
         imagemagick \
         libmagickwand-dev \
-        libtidy-dev
+        libtidy-dev \
+        git
 RUN docker-php-ext-install \
         iconv \
         mbstring \
+        gd \
         intl \
         pdo \
         pdo_mysql \
         pdo_pgsql \
         pdo_sqlite \
-        tidy
+        sockets \
+        tidy \
+        bcmath \
+        zip
 
 RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick