File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ ARG ODKLITE_TAG=latest
44FROM obolibrary/odklite:${ODKLITE_TAG}
55LABEL maintainer=
"[email protected] " 66
7- ENV PATH "/tools/apache-jena/bin:/tools/sparqlprog/bin:$PATH"
7+ ENV PATH= "/tools/apache-jena/bin:/tools/sparqlprog/bin:$PATH"
88
99ARG ODK_VERSION 0.0.0
10- ENV ODK_VERSION $ODK_VERSION
10+ ENV ODK_VERSION= $ODK_VERSION
1111
1212# Software versions
1313ENV JENA_VERSION=4.9.0
@@ -16,7 +16,7 @@ ENV SSSOM_JAVA_VERSION=0.7.7
1616
1717# Avoid repeated downloads of script dependencies by mounting the local coursier cache:
1818# docker run -v $HOME/.coursier/cache/v1:/tools/.coursier-cache ...
19- ENV COURSIER_CACHE "/tools/.coursier-cache"
19+ ENV COURSIER_CACHE= "/tools/.coursier-cache"
2020
2121# Add NodeSource package repository (needed to get recent versions of Node)
2222COPY thirdpartykeys/nodesource.gpg /usr/share/keyrings/nodesource.gpg
@@ -103,7 +103,7 @@ RUN chmod +x /tools/obodash && \
103103
104104# Install relation-graph
105105ENV RG=2.3.2
106- ENV PATH "/tools/relation-graph/bin:$PATH"
106+ ENV PATH= "/tools/relation-graph/bin:$PATH"
107107RUN wget -nv https://github.com/balhoff/relation-graph/releases/download/v$RG/relation-graph-cli-$RG.tgz \
108108&& tar -zxvf relation-graph-cli-$RG.tgz \
109109&& mv relation-graph-cli-$RG /tools/relation-graph \
Original file line number Diff line number Diff line change 33
44WORKDIR /tools
55
6- ENV ROBOT v1.9.6
6+ ENV ROBOT= v1.9.6
77ARG ROBOT_JAR=https://github.com/ontodev/robot/releases/download/$ROBOT/robot.jar
8- ENV ROBOT_JAR ${ROBOT_JAR}
8+ ENV ROBOT_JAR= ${ROBOT_JAR}
99
1010RUN apt-get update &&\
1111 apt-get upgrade -y &&\
@@ -20,6 +20,6 @@ RUN curl -L $ROBOT_JAR -o /tools/robot.jar &&\
2020 chmod +x /tools/robot && \
2121 chmod +x /tools/robot.jar
2222
23- ENV PATH "/tools/:$PATH"
23+ ENV PATH= "/tools/:$PATH"
2424RUN echo "Keep me in sync with obolibrary/odkfull!"
2525CMD robot -h
You can’t perform that action at this time.
0 commit comments