mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-08 00:18:36 +00:00
18 lines
350 B
Docker
18 lines
350 B
Docker
FROM python:3.9.2
|
|
|
|
EXPOSE 7777
|
|
|
|
COPY . /catalog-ingestion
|
|
|
|
WORKDIR /catalog-ingestion
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y gcc libsasl2-dev unixodbc-dev --no-install-recommends && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN chmod 777 ingestion_dependency.sh
|
|
|
|
RUN ./ingestion_dependency.sh
|
|
|
|
CMD ["python","ingestion_scheduler/scheduler.py"]
|