OpenMetadata/ingestion/Dockerfile

18 lines
350 B
Docker
Raw Normal View History

2021-08-01 14:27:44 -07:00
FROM python:3.9.2
EXPOSE 7777
COPY . /catalog-ingestion
WORKDIR /catalog-ingestion
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"]