From a008c17dc669cc8fc661e64e39f89988cf6ea408 Mon Sep 17 00:00:00 2001 From: Jasper Boom <j.boom.me@lumc.nl> Date: Mon, 12 Aug 2019 11:53:26 +0200 Subject: [PATCH] Update dockerTag to dockerImage --- common.wdl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common.wdl b/common.wdl index 7b85d46..5c53c77 100644 --- a/common.wdl +++ b/common.wdl @@ -77,7 +77,7 @@ task Copy { Boolean recursive = false # Version not that important as long as it is stable. - String dockerTag = "5.0.2" + String dockerImage = "bash:5.0.2" } command { @@ -91,7 +91,7 @@ task Copy { } runtime { - docker: "bash:" + dockerTag + docker: dockerImage } } @@ -155,7 +155,7 @@ task YamlToJson { input { File yaml String outputJson = basename(yaml, "\.ya?ml$") + ".json" - String dockerTag = "3.13-py37-slim" + String dockerImage = "biowdl/pyyaml:3.13-py37-slim" } command { set -e @@ -174,7 +174,7 @@ task YamlToJson { } runtime { - docker: "biowdl/pyyaml:" + dockerTag + docker: dockerImage } } -- GitLab