OpenMetadata/ingestion/Dockerfile

20 lines
579 B
Docker
Raw Normal View History

2021-08-14 00:09:51 +05:30
FROM python:3.8.10
2021-08-01 14:27:44 -07:00
EXPOSE 7777
COPY ./pipelines /openmetadata-ingestion/pipelines
COPY ./ingestion_scheduler /openmetadata-ingestion/ingestion_scheduler
COPY ./ingestion_dependency.sh /openmetadata-ingestion/ingestion_dependency.sh
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"]