mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
6 lines
230 B
Text
6 lines
230 B
Text
FROM nextcloud:apache
|
|
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
|