aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-02-16 16:41:36 +0000
committerGravatar Chris Lovering <[email protected]>2025-02-16 16:41:36 +0000
commit2e62f80e30bbbd65037ea1833128394f51e365a7 (patch)
tree4aea7bc929a63ff28e0b2a577b9ec2d564415556
parentUpdate poetry install command to ensure ldap deps are isntalled (diff)
Bonsai now needs libldap2-dev at runtime
-rw-r--r--Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 53bb9f5..ad24496 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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