diff options
author | 2025-02-16 16:41:36 +0000 | |
---|---|---|
committer | 2025-02-16 16:41:36 +0000 | |
commit | 2e62f80e30bbbd65037ea1833128394f51e365a7 (patch) | |
tree | 4aea7bc929a63ff28e0b2a577b9ec2d564415556 | |
parent | Update poetry install command to ensure ldap deps are isntalled (diff) |
Bonsai now needs libldap2-dev at runtime
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,7 +19,11 @@ RUN poetry install --no-root --without dev --with ldap FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:$python_version -RUN apt-get update && apt-get install --no-install-recommends -y libmagickwand-dev && rm -rf /var/lib/apt/lists/* +RUN apt-get update \ + && apt-get install --no-install-recommends -y \ + libmagickwand-dev \ + libldap2-dev \ + && rm -rf /var/lib/apt/lists/* # Install dependencies from build cache WORKDIR /app |