mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-17 21:56:56 +00:00
build(docker): add large generated directories to dockerignore (#2151)
This commit is contained in:
parent
9e73794022
commit
11532a1cc3
@ -1,4 +1,7 @@
|
|||||||
datahub-web/node_modules
|
**/node_modules/
|
||||||
|
datahub-web/build/
|
||||||
|
datahub-frontend/build/
|
||||||
|
metadata-ingestion/venv/
|
||||||
out
|
out
|
||||||
**/*.class
|
**/*.class
|
||||||
# Have to copy gradle/wrapper/gradle-wrapper.jar, can't exclude ALL jars
|
# Have to copy gradle/wrapper/gradle-wrapper.jar, can't exclude ALL jars
|
||||||
|
@ -1,7 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euxo pipefail
|
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
|
python -m pip install --upgrade pip
|
||||||
pip install -e .
|
pip install -e .
|
||||||
|
Loading…
x
Reference in New Issue
Block a user