2021-08-14 00:09:51 +05:30
|
|
|
FROM python:3.8.10
|
2021-08-01 14:27:44 -07:00
|
|
|
|
|
|
|
EXPOSE 7777
|
|
|
|
|
2021-08-13 02:29:36 +05:30
|
|
|
COPY ./pipelines /openmetadata-ingestion/pipelines
|
|
|
|
COPY ./ingestion_scheduler /openmetadata-ingestion/ingestion_scheduler
|
|
|
|
COPY ./ingestion_dependency.sh /openmetadata-ingestion/ingestion_dependency.sh
|
2021-08-16 18:37:04 +05:30
|
|
|
COPY ./examples /openmetadata-ingestion/examples
|
2021-08-09 09:19:35 +05:30
|
|
|
WORKDIR /openmetadata-ingestion
|
2021-08-01 14:27:44 -07:00
|
|
|
|
2021-08-03 01:24:50 +05:30
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y gcc libsasl2-dev unixodbc-dev --no-install-recommends && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-08-01 14:27:44 -07:00
|
|
|
|
2021-08-03 01:24:50 +05:30
|
|
|
RUN chmod 777 ingestion_dependency.sh
|
|
|
|
|
|
|
|
RUN ./ingestion_dependency.sh
|
|
|
|
|
|
|
|
CMD ["python","ingestion_scheduler/scheduler.py"]
|