* Upgrade base image to ruby 2.7
[arvados-k8s.git] / tests / cwl-diagnostics-hasher / hasher.cwl
1 #!/usr/bin/env cwl-runner
2
3 cwlVersion: v1.0
4 class: CommandLineTool
5
6 baseCommand: md5sum
7 inputs:
8   inputfile:
9     type: File
10     inputBinding:
11       position: 1
12   outputname:
13     type: string
14
15 stdout: $(inputs.outputname)
16
17 outputs:
18   hasher_out:
19     type: File
20     outputBinding:
21       glob: $(inputs.outputname)