mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
0deec4082f
It's required in the 2.4 version
33 lines
766 B
Docker
33 lines
766 B
Docker
FROM php:7.2-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 \
|
|
libpng-dev \
|
|
libjpeg-dev \
|
|
libsqlite3-dev \
|
|
imagemagick \
|
|
libmagickwand-dev \
|
|
libtidy-dev
|
|
RUN docker-php-ext-install \
|
|
iconv \
|
|
mbstring \
|
|
intl \
|
|
pdo \
|
|
pdo_mysql \
|
|
pdo_pgsql \
|
|
pdo_sqlite \
|
|
tidy
|
|
|
|
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 usermod -u 1000 www-data
|
|
|
|
CMD ["php-fpm"]
|