Skip to content

Commit 2e62f80

Browse files
committed
Bonsai now needs libldap2-dev at runtime
1 parent 7681fea commit 2e62f80

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ RUN poetry install --no-root --without dev --with ldap
1919

2020
FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:$python_version
2121

22-
RUN apt-get update && apt-get install --no-install-recommends -y libmagickwand-dev && rm -rf /var/lib/apt/lists/*
22+
RUN apt-get update \
23+
&& apt-get install --no-install-recommends -y \
24+
libmagickwand-dev \
25+
libldap2-dev \
26+
&& rm -rf /var/lib/apt/lists/*
2327

2428
# Install dependencies from build cache
2529
WORKDIR /app

0 commit comments

Comments
 (0)