Forked from westberliner/Dockerfile owncloud:latest
Created
January 28, 2023 13:40
-
-
Save yveson33/c7320a1e3699b0c2c09ab21decb42ca3 to your computer and use it in GitHub Desktop.
Add ldap php extension to official owncloud docker container.
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 owncloud:latest | |
RUN \ | |
apt-get update && \ | |
apt-get install libldap2-dev -y && \ | |
rm -rf /var/lib/apt/lists/* && \ | |
docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ | |
docker-php-ext-install ldap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thx