From 8ca37f19228de28c2cbdee822cdc40fca0646caa Mon Sep 17 00:00:00 2001 From: Olamide Isreal Date: Mon, 16 Mar 2026 17:40:38 +0100 Subject: [PATCH] Use v2 image tag to force K8s to pull updated image K8s caches :latest tag. Using :v2 ensures the permission-fixed image is pulled instead of the cached old one. Co-Authored-By: Claude Opus 4.6 (1M context) --- main.nf | 2 +- nextflow.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.nf b/main.nf index e442b72..c017c6f 100755 --- a/main.nf +++ b/main.nf @@ -8,7 +8,7 @@ params.msa_server = 'https://api.colabfold.com' params.num_samples = 5 process CHAI1 { - container 'harbor.cluster.omic.ai/omic/chai1:latest' + container 'harbor.cluster.omic.ai/omic/chai1:v2' publishDir params.outdir, mode: 'copy' stageInMode 'copy' maxForks 1 diff --git a/nextflow.config b/nextflow.config index c62638d..65943e2 100755 --- a/nextflow.config +++ b/nextflow.config @@ -3,7 +3,7 @@ docker { } process { - container = 'harbor.cluster.omic.ai/omic/chai1:latest' + container = 'harbor.cluster.omic.ai/omic/chai1:v2' memory = '32 GB' cpus = 4 }