mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-28 02:13:09 +00:00

* Support for RDF, SPARQL, SQL-TO-SPARQL * Tests are working * Add RDF relations tests * improve Knowledge Graph UI, tags , glossary term relations * Lang translations * Fix level depth querying * Add semantic search interfaces , integration into search * cleanup * Update generated TypeScript types * Fix styling * remove duplicated ttl file * model generator cleanup * Update OM - DCAT vocab * Update DataProduct Schema * Improve JsonLD Translator * Update generated TypeScript types * Fix Tests * Fix java checkstyle * Add RDF workflows * fix unit tests * fix e2e --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
29 lines
847 B
Docker
29 lines
847 B
Docker
# Simple Fuseki build that works on ARM64
|
|
FROM openjdk:17-slim
|
|
|
|
# Set Fuseki version and paths
|
|
ENV FUSEKI_VERSION=4.10.0
|
|
ENV FUSEKI_HOME=/fuseki
|
|
ENV FUSEKI_BASE=/fuseki
|
|
|
|
# Create directories
|
|
RUN mkdir -p ${FUSEKI_HOME}
|
|
|
|
WORKDIR ${FUSEKI_HOME}
|
|
|
|
# Download Fuseki using ADD (doesn't require wget)
|
|
ADD https://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${FUSEKI_VERSION}.tar.gz /tmp/fuseki.tar.gz
|
|
|
|
# Extract Fuseki
|
|
RUN tar -xzf /tmp/fuseki.tar.gz --strip-components=1 -C ${FUSEKI_HOME} && \
|
|
rm /tmp/fuseki.tar.gz && \
|
|
mkdir -p ${FUSEKI_HOME}/run ${FUSEKI_HOME}/databases
|
|
|
|
# JVM options
|
|
ENV JVM_ARGS="-Xmx4g -Xms2g"
|
|
|
|
# Expose port
|
|
EXPOSE 3030
|
|
|
|
# Start Fuseki
|
|
CMD ["sh", "-c", "mkdir -p ${FUSEKI_HOME}/databases/openmetadata && exec ${FUSEKI_HOME}/fuseki-server --update --loc=${FUSEKI_HOME}/databases/openmetadata /openmetadata"] |