-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ammonite is no longer used by any standard, ODK-generated workflow -- it was only used by the `make validate_idranges` workflow, which now uses a dedicated program. So we move Ammonite to the ODKFull image only, in line with the intended usage of ODKLite -- ODKLite should contain everything that is required by standard workflows, and nothing more.
- Loading branch information
Showing
4 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ LABEL maintainer="[email protected]" | |
ENV ROBOT_VERSION=1.9.7 | ||
ENV DOSDP_VERSION=0.19.3 | ||
ENV OWLTOOLS_VERSION=2020-04-06 | ||
ENV AMMONITE_VERSION=2.5.9 | ||
ENV RELATION_GRAPH=2.3.2 | ||
ENV DICER_VERSION=0.1.0 | ||
|
||
|
@@ -70,12 +69,6 @@ RUN wget -nv https://github.com/owlcollab/owltools/releases/download/$OWLTOOLS_V | |
chmod +x /tools/ontology-release-runner && \ | ||
chmod +x /tools/owltools-oort-all.jar | ||
|
||
# Install Ammonite. | ||
RUN wget -nv https://github.com/lihaoyi/Ammonite/releases/download/$AMMONITE_VERSION/2.13-$AMMONITE_VERSION \ | ||
-O /tools/amm && \ | ||
chmod 755 /tools/amm && \ | ||
java -cp /tools/amm ammonite.AmmoniteMain /dev/null | ||
|
||
# Install relation-graph | ||
RUN wget -nv https://github.com/balhoff/relation-graph/releases/download/v$RELATION_GRAPH/relation-graph-cli-$RELATION_GRAPH.tgz && \ | ||
tar -zxvf relation-graph-cli-$RELATION_GRAPH.tgz && \ | ||
|