In continuation of #120, I'm getting the same error when trying to install the imap extension on the alpine linux image:
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.
My Dockerfile:
FROM php:5-fpm-alpine
RUN apk upgrade --update && apk add \
php5-imap autoconf file g++ gcc binutils isl libatomic libc-dev musl-dev make re2c libstdc++ libgcc binutils-libs mpc1 mpfr3 gmp libgomp \
coreutils \
freetype-dev \
libjpeg-turbo-dev \
libltdl \
libmcrypt-dev \
libpng-dev \
libc-client-dev \
&& docker-php-ext-configure imap --with-imap --with-imap-ssl \
&& docker-php-ext-install imap \
&& docker-php-ext-install iconv mcrypt mysqli mysqlnd pdo pdo_mysql zip bcmath \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install gd \
&& apk del autoconf file g++ gcc binutils isl libatomic libc-dev musl-dev make re2c libstdc++ libgcc binutils-libs mpc1 mpfr3 gmp libgomp \
&& rm -rf /var/cache/apk/*
COPY ./php.ini /usr/local/etc/php/php.ini
Can anyone point me in the right direction to get this working? Maybe @tianon? 😄 Thanks!
In continuation of #120, I'm getting the same error when trying to install the imap extension on the alpine linux image:
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.My
Dockerfile:Can anyone point me in the right direction to get this working? Maybe @tianon? 😄 Thanks!