From 77fea8a94ae946964618fce928ee1dfcc6487502 Mon Sep 17 00:00:00 2001 From: Aseem Bansal Date: Mon, 27 Jun 2022 17:28:12 +0530 Subject: [PATCH] fix(build): missing libs (#5254) --- docker/datahub-ingestion/base.Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docker/datahub-ingestion/base.Dockerfile b/docker/datahub-ingestion/base.Dockerfile index 7c8ab43d8c1bfb..e104b9b34f8adb 100644 --- a/docker/datahub-ingestion/base.Dockerfile +++ b/docker/datahub-ingestion/base.Dockerfile @@ -1,5 +1,15 @@ FROM python:3.9.9 as base +RUN apt-get update && apt-get install -y \ + jq \ + librdkafka-dev \ + python3-ldap \ + libldap2-dev \ + libsasl2-dev \ + libsasl2-modules \ + ldap-utils \ + && python -m pip install --upgrade pip wheel setuptools==57.5.0 + COPY ./base-requirements.txt requirements.txt RUN pip install -r requirements.txt \ No newline at end of file