Use v2 image tag to force fresh pull with boto3 baked in

This commit is contained in:
2026-03-23 17:56:16 +01:00
parent c0f82a2055
commit e52adef212
2 changed files with 2 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ params.model_path = '/workspace/gvp/models/pocketminer'
params.debug = false
process POCKETMINER {
container 'harbor.cluster.omic.ai/omic/pocketminer:latest'
container 'harbor.cluster.omic.ai/omic/pocketminer:v2'
publishDir params.outdir, mode: 'copy'
input:
@@ -66,9 +66,6 @@ process POCKETMINER {
echo "AWS_SECRET_ACCESS_KEY: \${AWS_SECRET_ACCESS_KEY:+set}" >> run.log
echo "AWS_ENDPOINT_URL: \${AWS_ENDPOINT_URL:-not set}" >> run.log
# Install boto3 if needed, then download
pip install -q boto3 2>> run.log || conda install -y -q boto3 2>> run.log || true
python -c "
import os, sys
s3_path = os.environ.get('S3_INPUT', '${pdb_path}')

View File

@@ -39,7 +39,7 @@ profiles {
k8s {
process {
executor = 'k8s'
container = 'harbor.cluster.omic.ai/omic/pocketminer:latest'
container = 'harbor.cluster.omic.ai/omic/pocketminer:v2'
}
docker {
enabled = true