From 55a9066ef58e224dcf7e242e5c9426788f1efbef Mon Sep 17 00:00:00 2001 From: Ludovic Muller Date: Tue, 30 Jan 2024 13:18:39 +0100 Subject: [PATCH] fix: include missing Apache Jena tools --- .changeset/spotty-tips-yell.md | 5 +++++ Dockerfile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/spotty-tips-yell.md diff --git a/.changeset/spotty-tips-yell.md b/.changeset/spotty-tips-yell.md new file mode 100644 index 0000000..2d54324 --- /dev/null +++ b/.changeset/spotty-tips-yell.md @@ -0,0 +1,5 @@ +--- +"docker-node-java-jena": patch +--- + +Add missing Apache Jena tools diff --git a/Dockerfile b/Dockerfile index 923d6a6..a047a69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dear RUN npm install -g barnard59 # install Apache Jena tools -RUN curl -fsSL "https://dlcdn.apache.org/jena/binaries/apache-jena-fuseki-${JENA_VERSION}.tar.gz" | tar zxf - \ +RUN curl -fsSL "https://dlcdn.apache.org/jena/binaries/apache-jena-${JENA_VERSION}.tar.gz" | tar zxf - \ && mv apache-jena* /jena \ && rm -f jena.tar.gz* \ && cd /jena && rm -rf *javadoc* *src* bat