Upload files to "/"

This commit is contained in:
2026-05-18 21:34:38 +02:00
commit 6361238ad5
2 changed files with 53 additions and 0 deletions

18
main.nf Normal file
View File

@@ -0,0 +1,18 @@
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()
}