From e24e801de9f36704edae74bea90711322f537b34 Mon Sep 17 00:00:00 2001 From: Vivian Rook Date: Thu, 4 Jul 2024 10:23:33 -0400 Subject: [PATCH] Update open refine Bug: T363917 --- images/singleuser/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/singleuser/Dockerfile b/images/singleuser/Dockerfile index d7de0094..c26536dd 100644 --- a/images/singleuser/Dockerfile +++ b/images/singleuser/Dockerfile @@ -156,7 +156,7 @@ USER root ENV OPENREFINE_DIR /srv/openrefine ENV PATH=$PATH:$OPENREFINE_DIR RUN mkdir -p ${OPENREFINE_DIR} && cd ${OPENREFINE_DIR} && \ - curl -L 'https://github.com/OpenRefine/OpenRefine/releases/download/3.7.9/openrefine-linux-3.7.9.tar.gz' | tar xzf - --strip=1 + curl -L 'https://github.com/OpenRefine/OpenRefine/releases/download/3.8.1/openrefine-linux-3.8.1.tar.gz' | tar xzf - --strip=1 USER root RUN apt-get install --yes unzip @@ -166,7 +166,7 @@ ENV REFINE_DIR /home/paws RUN pip install --no-cache-dir nb_serverproxy_openrefine USER root -RUN wget https://github.com/OpenRefine/CommonsExtension/releases/download/v0.1.1/openrefine-commons-0.1.1.zip -O /tmp/openrefine-commonsextension.zip +RUN wget https://github.com/OpenRefine/CommonsExtension/releases/download/v0.1.2/openrefine-commons.zip -O /tmp/openrefine-commonsextension.zip RUN unzip /tmp/openrefine-commonsextension.zip -d ${OPENREFINE_DIR}/webapp/extensions/ ## Done setting up OpenRefine