nextflow.enable.dsl = 2 process hello { container 'ubuntu:22.04' output: path 'hello.txt' script: """ echo "Hello, from kubernetes" > hello.txt hostname >> hello.txt """ } workflow { hello() }