X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docker%2Fphp%2FDockerfile;h=171e12fc979e0d4ee3777e54a653cfc5bfb12418;hb=48b0163d247554d7e2f1ec63b717c8216ea9ec59;hp=d9b2e5cc1d7c0fa9ed614d22472e8356d06b6980;hpb=2a61e13fae4e71c804e96caefd3fdb46f09a81db;p=github%2Fwallabag%2Fwallabag.git diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index d9b2e5cc..171e12fc 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -2,6 +2,7 @@ FROM php:7.2-fpm # Default timezone. To change it, use the argument in the docker-compose.yml file ARG timezone='Europe/Paris' +ARG memorylimit='512M' RUN apt-get update && apt-get install -y \ libmcrypt-dev \ @@ -12,19 +13,27 @@ RUN apt-get update && apt-get install -y \ libjpeg-dev \ libsqlite3-dev \ imagemagick \ - libmagickwand-dev + libmagickwand-dev \ + libtidy-dev \ + git RUN docker-php-ext-install \ iconv \ mbstring \ + gd \ intl \ pdo \ pdo_mysql \ pdo_pgsql \ - pdo_sqlite + pdo_sqlite \ + sockets \ + tidy \ + bcmath \ + zip RUN printf "\n" | pecl install imagick && docker-php-ext-enable imagick RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini +RUN echo "memory_limit ="$memorylimit > /usr/local/etc/php/conf.d/memory_limit.ini RUN usermod -u 1000 www-data