Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add relation-graph tool #13

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ARG DOSDP=0.14
ARG JENA=3.12.0
ARG BGR=1.6
ARG KBOT=1.11
ARG RELGRAPH=1.0

### 2. Get Java, Python and all required system libraries
RUN apt-get update && apt-get upgrade -y \
Expand Down Expand Up @@ -53,6 +54,11 @@ RUN curl -O -L https://github.com/INCATools/dosdp-tools/releases/download/v$DOSD
&& chmod +x /tools/dosdp-tools-$DOSDP
ENV PATH "/tools/dosdp-tools-$DOSDP/bin:$PATH"

###### RELATION-GRAPH ######
RUN curl -O -L https://github.com/balhoff/relation-graph/releases/download/v$RELGRAPH/relation-graph-$RELGRAPH.tgz \
&& tar -zxf relation-graph-$RELGRAPH.tgz
Shalsh23 marked this conversation as resolved.
Show resolved Hide resolved
ENV PATH "/tools/relation-graph-$RELGRAPH/bin:$PATH"

###### BLAZEGRAPH-RUNNER ######
RUN curl -O -L https://github.com/balhoff/blazegraph-runner/releases/download/v$BGR/blazegraph-runner-$BGR.tgz \
&& tar -zxf blazegraph-runner-$BGR.tgz \
Expand Down