Skip to content

Commit

Permalink
Docker: Fixed Image Build
Browse files Browse the repository at this point in the history
  • Loading branch information
luke- committed Sep 2, 2022
1 parent 7251503 commit 7536d7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Expand Up @@ -9,21 +9,23 @@ RUN apt-get update
# Install PHP Extensions
#--------------------------------------------------------------------------
RUN \
apt-get install libldap2-dev libicu-dev libsqlite3-0 libsqlite3-dev -y && \
apt-get install libldap2-dev libicu-dev libsqlite3-0 libsqlite3-dev libzip -y && \
docker-php-ext-configure ldap && \
docker-php-ext-install ldap && \
docker-php-ext-configure intl && \
docker-php-ext-install intl && \
docker-php-ext-configure pdo_sqlite && \
docker-php-ext-install pdo_sqlite && \
docker-php-ext-configure zip && \
docker-php-ext-install zip && \
php -m

#--------------------------------------------------------------------------
# Download Composer and install
#--------------------------------------------------------------------------
RUN apt-get install git unzip -y
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
RUN composer install
RUN composer install --no-dev

#--------------------------------------------------------------------------
# Cleanup
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -16,7 +16,8 @@ LDAP Commander is a web interface for managing LDAP servers. Currently only Open

- Browse LDAP Structure
- Create, Edit and Delete LDAP Entities
- Schema Detection
- Automatic Schema Detection
- Schema Viewer
- Entity Editor
- Multi Value Support
- Binary Attributes
Expand Down

0 comments on commit 7536d7d

Please sign in to comment.