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 oaklib #586

Merged
merged 3 commits into from
Apr 26, 2022
Merged
Show file tree
Hide file tree
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
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV ODK_VERSION $ODK_VERSION
ENV COURSIER_CACHE "/tools/.coursier-cache"

# Install tools provided by Ubuntu.
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
build-essential \
openssh-client \
openjdk-11-jdk-headless \
Expand All @@ -26,7 +26,10 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get install -y --no-i
sqlite3 \
libjson-perl \
pkg-config \
xlsx2csv
xlsx2csv \
nodejs \
npm \
graphviz

# Install run-time dependencies for SWI-Prolog.
RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -83,6 +86,10 @@ RUN wget -nv http://archive.apache.org/dist/jena/binaries/apache-jena-3.12.0.tar
RUN swipl -g "pack_install(sparqlprog, [interactive(false)])" -g halt && \
ln -sf /root/.local/share/swi-prolog/pack/sparqlprog /tools/

# Install obographviz
RUN npm install obographviz && \
ln -s /tools/node_modules/obographviz/bin/og2dot.js /tools/og2dot.js

# Install OBO-Dashboard.
COPY scripts/obodash /tools
RUN chmod +x /tools/obodash && \
Expand Down
Loading