Skip to content

Commit

Permalink
fix(build): missing libs (datahub-project#5254)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal authored and alexey-kravtsov committed Jul 8, 2022
1 parent 95bf8a2 commit 378e699
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docker/datahub-ingestion/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 378e699

Please sign in to comment.