mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-07 14:53:28 +00:00

* added docker file for local build and ingestion * Docker Modified for local setup * Ingestion script optimized * Added script to directly run Local Docker Co-authored-by: Parth Panchal <parthpanchal@Parths-MacBook-Air.local>
13 lines
328 B
Plaintext
13 lines
328 B
Plaintext
FROM python:3.8.10
|
|
|
|
EXPOSE 7777
|
|
|
|
COPY ./. /openmetadata-ingestion/.
|
|
WORKDIR /openmetadata-ingestion
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y wget gcc libsasl2-dev unixodbc-dev --no-install-recommends && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN chmod 777 local_ingestion_dependency.sh
|
|
CMD ["./local_ingestion_dependency.sh"] |