mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-19 19:48:32 +00:00
14 lines
265 B
Docker
14 lines
265 B
Docker
|
|
FROM python:3.9.2
|
||
|
|
|
||
|
|
EXPOSE 7777
|
||
|
|
|
||
|
|
COPY . /catalog-ingestion
|
||
|
|
|
||
|
|
WORKDIR /catalog-ingestion
|
||
|
|
|
||
|
|
RUN apt-get update && apt-get install -y wget && \
|
||
|
|
chmod 777 install_dependencies.sh && \
|
||
|
|
chmod 777 run_scheduler.sh
|
||
|
|
|
||
|
|
RUN ./install_dependencies.sh
|
||
|
|
CMD ./run_scheduler.sh
|