Last active
February 4, 2024 12:17
-
-
Save shyd/a03bdddb1fe4363d102c4f34822c5be0 to your computer and use it in GitHub Desktop.
install php imap in dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:5-apache | |
RUN apt-get update && \ | |
apt-get install -y \ | |
libc-client-dev libkrb5-dev && \ | |
rm -r /var/lib/apt/lists/* | |
RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ | |
docker-php-ext-install -j$(nproc) imap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tanks very much!