From 95017b477a0a450baa2f8cc65aa15aea11579d37 Mon Sep 17 00:00:00 2001 From: apb Date: Tue, 2 Nov 2021 22:44:01 +0000 Subject: [PATCH] [fix] --- fuseki/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuseki/Dockerfile b/fuseki/Dockerfile index 4d70d24..84d5481 100644 --- a/fuseki/Dockerfile +++ b/fuseki/Dockerfile @@ -10,7 +10,7 @@ ENV URL=https://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${VERSI ENV BASE=/mnt/apache-jena-fuseki-${VERSION} WORKDIR /mnt -RUN sh -c 'curl -L $URL | tar xv' +RUN mkdir -p ${BASE} && curl -L ${URL} | tar zxv -C ${BASE} --strip-components 1 WORKDIR $BASE