Wave container failing to build

Only one step of my workflow fails due to a wave container error. Specifically,

error: nextflow.exception.ProcessException: Task failed to start - CannotPullImageManifestError: Error respons>process > 'star:STARalign (STAR align)'


Unown: repository 'private.cr.seqera.io/wave/build:fc2ac7bfe51bfa97' not found

The dockerfile it pulls from is a simple dockerfile that is publically available:
FROM linearparadox/star:latest

Is the only line. All other steps in my workflow (which also utilize wave) run normally and don’t fail.

Hi Alexei,
Could you please provide more context (nextflow.config, .nf files) of your workflow? I’ve been able to run a sample workflow with your container locally using following config:

docker {

  enabled = true

}



wave {

  enabled = true

}

and a sample workflow:

workflow {

    faq_2411()

}



process faq_2411 {

    container = "linearparadox/star:latest"

    """

    samtools --help

    """

}