2021-04-13 00:01:26 +03:00
|
|
|
# syntax = edrevo/dockerfile-plus
|
|
|
|
FROM php:7.3-fpm
|
|
|
|
|
2021-04-15 12:20:13 +03:00
|
|
|
INCLUDE+ ./php.base.Dockerfile
|
|
|
|
|
|
|
|
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ \
|
|
|
|
&& docker-php-ext-install -j$(nproc) gd
|