From 4563a2647d6b9f9ec9d99e0a42bdd18cb5f8fad9 Mon Sep 17 00:00:00 2001 From: Anton Schwarz Date: Wed, 2 Aug 2023 13:06:27 +0200 Subject: [PATCH] Update Rucio Image Tag (Hardcoded) Change the downloaded rucio image from `fedora32-python3.8` to `alma9-python3.9` because the former was outdated and caused errors in the docs build process. Note that this hardcodes the image tag and the tag needs to be changed each time rucio is updated to reflect changes made there. A "better" solution would be to query the "latest" tag, but this does not exist on the github container repository (GHCR), to the best of my knowledge. --- tools/generate_dynamic_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/generate_dynamic_files.sh b/tools/generate_dynamic_files.sh index 8d77c4aca7a..84aaa0f24af 100755 --- a/tools/generate_dynamic_files.sh +++ b/tools/generate_dynamic_files.sh @@ -5,5 +5,5 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) docker run --rm \ --volume "$SCRIPT_DIR/run_in_docker:/run_in_docker:rw" \ --volume "$SCRIPT_DIR/auto_generated:/auto_generated:rw" \ - ghcr.io/rucio/rucio/rucio-autotest:fedora32-python3.8 \ + ghcr.io/rucio/rucio/rucio-autotest:alma9-python3.9 \ /bin/bash -c /run_in_docker/generate_docs.sh