From 2e62f80e30bbbd65037ea1833128394f51e365a7 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 16 Feb 2025 16:41:36 +0000 Subject: Bonsai now needs libldap2-dev at runtime --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3