build(docker): add large generated directories to dockerignore (#2151)

This commit is contained in:
Harshal Sheth 2021-03-02 10:48:55 -08:00 committed by GitHub
parent 9e73794022
commit 11532a1cc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 3 deletions

View File

@ -1,7 +1,10 @@
datahub-web/node_modules
**/node_modules/
datahub-web/build/
datahub-frontend/build/
metadata-ingestion/venv/
out
**/*.class
# Have to copy gradle/wrapper/gradle-wrapper.jar, can't exclude ALL jars
**/build/**/*.jar
.git
.gradle
.gradle

View File

@ -1,7 +1,12 @@
#!/bin/bash
set -euxo pipefail
sudo apt-get update && sudo apt-get install -y librdkafka-dev python-ldap libldap2-dev libsasl2-dev ldap-utils
sudo apt-get update && sudo apt-get install -y \
librdkafka-dev \
python3-ldap \
libldap2-dev \
libsasl2-dev \
ldap-utils
python -m pip install --upgrade pip
pip install -e .