mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 10:32:28 +08:00
fixed for php:7.4-fpm
As per https://github.com/docker-library/php/issues/912 to correct build error: "configure: error: unrecognized options: --with-freetype-dir, --with-jpeg-dir"
This commit is contained in:
parent
43a1196dbb
commit
b1fc295e22
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ RUN pecl install xxtea-1.0.11 && \
|
|||
|
||||
RUN docker-php-ext-configure intl && \
|
||||
docker-php-ext-configure ldap && \
|
||||
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
|
||||
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ && \
|
||||
docker-php-ext-install opcache pdo_mysql zip intl gd ldap
|
||||
|
||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
||||
|
|
Loading…
Reference in a new issue