mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 12:31:05 +00:00
ecdefb11f7
The gd extension is required to export entries as EPUB.
16 lines
554 B
Docker
16 lines
554 B
Docker
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 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 gd
|
|
|
|
RUN echo "date.timezone="$timezone > /usr/local/etc/php/conf.d/date_timezone.ini
|
|
|
|
RUN usermod -u 1000 www-data
|
|
|
|
CMD ["php-fpm"]
|