14198: Federation feature and testing
[arvados.git] / sdk / cwl / tests / federation / framework / dockerbuild.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 cwlVersion: v1.0
6 class: CommandLineTool
7 inputs:
8   testcase: string
9 outputs:
10   imagename:
11     type: string
12     outputBinding:
13       outputEval: $(inputs.testcase)
14 requirements:
15   InitialWorkDirRequirement:
16     listing:
17       - entryname: Dockerfile
18         entry: |-
19           FROM debian@sha256:0a5fcee6f52d5170f557ee2447d7a10a5bdcf715dd7f0250be0b678c556a501b
20           LABEL org.arvados.testcase="$(inputs.testcase)"
21 arguments: [docker, build, -t, $(inputs.testcase), "."]