X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docker%2Fphp%2FDockerfile;h=1fb1f29826e7c402cecb9274006767dea4dd4558;hb=refs%2Fpull%2F2319%2Fhead;hp=7c56ae573b439c4978fad88b39ecc5e5d663cda8;hpb=540ef5e084db2295d7ca476c980ec10fb90e9722;p=github%2Fwallabag%2Fwallabag.git diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index 7c56ae57..1fb1f298 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -1,9 +1,15 @@ FROM php:fpm +# Default timezone. To change it, use the argument in the docker-compose.yml file +ARG timezone='Europe/Paris' + RUN apt-get update && apt-get install -y \ - libmcrypt-dev libicu-dev libpq-dev libxml2-dev \ + libmcrypt-dev libicu-dev libpq-dev libxml2-dev libpng12-dev libjpeg-dev \ + && /usr/local/bin/docker-php-ext-configure gd --with-jpeg-dir=/usr/include \ && docker-php-ext-install \ - iconv mcrypt mbstring intl pdo pdo_mysql pdo_pgsql + iconv mcrypt mbstring intl pdo pdo_mysql pdo_pgsql gd + +RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini RUN usermod -u 1000 www-data