mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
8 lines
228 B
Text
8 lines
228 B
Text
|
FROM nextcloud:fpm
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y libc-client-dev libkrb5-dev \
|
||
|
&& rm -rf /var/lib/apt/lists/* \
|
||
|
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
|
||
|
&& docker-php-ext-install imap
|