-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1084 from INCATools/add-equal-signs-dockerfile
Adding = operator to ENV assignments
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ ARG ODKLITE_TAG=latest | |
FROM obolibrary/odklite:${ODKLITE_TAG} | ||
LABEL maintainer="[email protected]" | ||
|
||
ENV PATH "/tools/apache-jena/bin:/tools/sparqlprog/bin:$PATH" | ||
ENV PATH="/tools/apache-jena/bin:/tools/sparqlprog/bin:$PATH" | ||
|
||
ARG ODK_VERSION 0.0.0 | ||
ENV ODK_VERSION $ODK_VERSION | ||
ENV ODK_VERSION=$ODK_VERSION | ||
|
||
# Software versions | ||
ENV JENA_VERSION=4.9.0 | ||
|
@@ -16,7 +16,7 @@ ENV SSSOM_JAVA_VERSION=0.7.7 | |
|
||
# Avoid repeated downloads of script dependencies by mounting the local coursier cache: | ||
# docker run -v $HOME/.coursier/cache/v1:/tools/.coursier-cache ... | ||
ENV COURSIER_CACHE "/tools/.coursier-cache" | ||
ENV COURSIER_CACHE="/tools/.coursier-cache" | ||
|
||
# Add NodeSource package repository (needed to get recent versions of Node) | ||
COPY thirdpartykeys/nodesource.gpg /usr/share/keyrings/nodesource.gpg | ||
|
@@ -103,7 +103,7 @@ RUN chmod +x /tools/obodash && \ | |
|
||
# Install relation-graph | ||
ENV RG=2.3.2 | ||
ENV PATH "/tools/relation-graph/bin:$PATH" | ||
ENV PATH="/tools/relation-graph/bin:$PATH" | ||
RUN wget -nv https://github.com/balhoff/relation-graph/releases/download/v$RG/relation-graph-cli-$RG.tgz \ | ||
&& tar -zxvf relation-graph-cli-$RG.tgz \ | ||
&& mv relation-graph-cli-$RG /tools/relation-graph \ | ||
|
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 |
---|---|---|
|
@@ -3,9 +3,9 @@ LABEL maintainer="[email protected]" | |
|
||
WORKDIR /tools | ||
|
||
ENV ROBOT v1.9.6 | ||
ENV ROBOT=v1.9.6 | ||
ARG ROBOT_JAR=https://github.com/ontodev/robot/releases/download/$ROBOT/robot.jar | ||
ENV ROBOT_JAR ${ROBOT_JAR} | ||
ENV ROBOT_JAR=${ROBOT_JAR} | ||
|
||
RUN apt-get update &&\ | ||
apt-get upgrade -y &&\ | ||
|
@@ -20,6 +20,6 @@ RUN curl -L $ROBOT_JAR -o /tools/robot.jar &&\ | |
chmod +x /tools/robot && \ | ||
chmod +x /tools/robot.jar | ||
|
||
ENV PATH "/tools/:$PATH" | ||
ENV PATH="/tools/:$PATH" | ||
RUN echo "Keep me in sync with obolibrary/odkfull!" | ||
CMD robot -h |