fix(build): missing libs (#5254)

This commit is contained in:
Aseem Bansal 2022-06-27 17:28:12 +05:30 committed by GitHub
parent 32e598df2b
commit 001d636a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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