Skip to content

Commit

Permalink
Fix wget command for 3.5 image
Browse files Browse the repository at this point in the history
  • Loading branch information
joesb committed Mar 5, 2020
1 parent 150ca99 commit 1863766
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions image-src/3.5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ ENV PLUGINS_DIR=/var/lib/neo4j/plugins

ENV APOC_VERSION 3.5.0.9
ENV APOC_URI https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/${APOC_VERSION}/apoc-${APOC_VERSION}-all.jar
RUN wget -q -P --timeout 300 --tries 30 --output-document="${PLUGINS_DIR}/apoc.jar" "${APOC_URI}"
RUN wget -q -P "${PLUGINS_DIR}" --timeout 300 --tries 30 -O "apoc.jar" "${APOC_URI}"

ENV GRAPHQL_VERSION 3.5.0.4
ENV GRAPHQL_URI https://github.com/neo4j-graphql/neo4j-graphql/releases/download/${GRAPHQL_VERSION}/neo4j-graphql-${GRAPHQL_VERSION}.jar
RUN wget -q -P --timeout 300 --tries 30 --output-document="${PLUGINS_DIR}/graph-ql.jar" "${GRAPHQL_URI}"
RUN wget -q -P "${PLUGINS_DIR}" --timeout 300 --tries 30 -O "graph-ql.jar" "${GRAPHQL_URI}"

ENV GRAPH_ALGORITHMS_VERSION 3.5.4.0
ENV GRAPH_ALGORITHMS_URI https://github.com/neo4j-contrib/neo4j-graph-algorithms/releases/download/${GRAPH_ALGORITHMS_VERSION}/graph-algorithms-algo-${GRAPH_ALGORITHMS_VERSION}.jar
RUN wget -q -P --timeout 300 --tries 30 --output-document="${PLUGINS_DIR}/graph-algorithms.jar" "${GRAPH_ALGORITHMS_URI}"
RUN wget -q -P "${PLUGINS_DIR}" --timeout 300 --tries 30 -O "graph-algorithms.jar" "${GRAPH_ALGORITHMS_URI}"

ENV NEOSEMANTICS_VERSION 3.5.0.4
ENV NEOSEMANTICS_URI https://github.com/neo4j-labs/neosemantics/releases/download/${NEOSEMANTICS_VERSION}/neosemantics-${NEOSEMANTICS_VERSION}.jar
RUN wget -q -P --timeout 300 --tries 30 --output-document="${PLUGINS_DIR}/neosemantics.jar" "${NEOSEMANTICS_URI}"
RUN wget -q -P "${PLUGINS_DIR}" --timeout 300 --tries 30 -O "neosemantics.jar" "${NEOSEMANTICS_URI}"


EXPOSE 7474 7473 7687
Expand Down

0 comments on commit 1863766

Please sign in to comment.