From b4212764238de05badd3f996d3b7b578438afb67 Mon Sep 17 00:00:00 2001 From: Johannes Kiesel Date: Tue, 14 Jan 2025 15:21:40 +0100 Subject: [PATCH] update to GenIRSim 0.6.1 --- .../debating-systems/base/Dockerfile | 2 +- .../debating-systems/base/README.md | 8 ++++++-- .../debating-systems/basic-elastic-js/Dockerfile | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/clef25/retrieval-augmented-debating/debating-systems/base/Dockerfile b/clef25/retrieval-augmented-debating/debating-systems/base/Dockerfile index 4b2c868..b034663 100644 --- a/clef25/retrieval-augmented-debating/debating-systems/base/Dockerfile +++ b/clef25/retrieval-augmented-debating/debating-systems/base/Dockerfile @@ -3,7 +3,7 @@ ARG BASE_IMAGE=ubuntu:24.04 FROM ${BASE_IMAGE} ARG NVM_VERSION=0.40.1 ARG NODE_VERSION=23.6.0 -ARG GENIRSIM_VERSION=0.6.0 +ARG GENIRSIM_VERSION=0.6.1 # App EXPOSE 8080 diff --git a/clef25/retrieval-augmented-debating/debating-systems/base/README.md b/clef25/retrieval-augmented-debating/debating-systems/base/README.md index a3f4cd5..1c98f07 100644 --- a/clef25/retrieval-augmented-debating/debating-systems/base/README.md +++ b/clef25/retrieval-augmented-debating/debating-systems/base/README.md @@ -4,8 +4,12 @@ Build your image FROM this image. Add all your parts in `/app`. Add a shell scri ## Entrypoints - `/app/start.sh` (default): Script that starts your debating system on port 8080 -- `/genirsim/serve.sh`: Starts the GenIRSim web application (like [genirsim.webis.de](https://genirsim.webis.de/)) on port 8000 with access to your debating system on `http://localhost:8080` -- `/genirsim/run-in-tira.sh --configuration-file= --parameter-file= --output-file=`: Use this line as command in TIRA +- `/genirsim/serve.sh`: Starts the GenIRSim web application (like [genirsim.webis.de](https://genirsim.webis.de/)) on port 8000 with access to your debating system on `http://localhost:8080`. All paramters are passed to the `/app/start.sh` +- `/genirsim/run-in-tira.sh`: Use entrypoint in TIRA. Parameters: + - `--configuration-file=`: Uses the [touche25-rad-tira.json](touche25-rad-tira.json) by default + - `--parameter-file=` + - `--output-file=` + - `--`: Everything after this parameter is passed to the `/app/start.sh` ## Development diff --git a/clef25/retrieval-augmented-debating/debating-systems/basic-elastic-js/Dockerfile b/clef25/retrieval-augmented-debating/debating-systems/basic-elastic-js/Dockerfile index 0cd5299..0849093 100644 --- a/clef25/retrieval-augmented-debating/debating-systems/basic-elastic-js/Dockerfile +++ b/clef25/retrieval-augmented-debating/debating-systems/basic-elastic-js/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE_VERSION=0.1.8 +ARG BASE_IMAGE_VERSION=0.2.0 FROM ghcr.io/touche-webis-de/touche25-retrieval-augmented-debating-base:${BASE_IMAGE_VERSION}