mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-31 01:15:44 +00:00
* Sample Profile Data for Sample Tables (#815) * Sample Profile Data for Sample Tables * Disabling Profile as Default * Added Sample Profile Data to 3 additional sample tables * Sample Tables fixed (#850) * Pydantic fix, Docker update (#860) * Setup.py Modified with openmetadata-airflow package, docker update * Setup.py Modified * Update setup.py * Removed Pandas from Sample Data * Sample Users added under sample data * Sample User Standalone pipelines and modules removed * Docker release package updated * Dockerfile updated, removed redundant files * Setup.py removed from ingestion src directory * User Resource failing check resolved * Modifying Usage Columns Datatype
13 lines
417 B
Docker
13 lines
417 B
Docker
FROM openjdk:11
|
|
|
|
EXPOSE 8585 3306
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install --no-install-recommends curl wget -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY openmetadata-start.sh /
|
|
COPY openmetadata.yaml /
|
|
RUN wget https://github.com/open-metadata/OpenMetadata/releases/download/0.5.0/openmetadata-0.5.0.tar.gz
|
|
RUN chmod 777 openmetadata-start.sh && tar zxvf openmetadata-*.tar.gz
|
|
CMD ["./openmetadata-start.sh"]
|