From 21957fe41921d9c557067b2773205af6385f755b Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Wed, 24 Jan 2024 14:27:18 +0100 Subject: [PATCH] build(docker): install correct extras of reana-commons submodule (#261) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f0bae27..46b2e67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,9 +49,9 @@ RUN if [ "${DEBUG}" -gt 0 ]; then pip install --no-cache-dir -e ".[debug]"; else # hadolint ignore=DL3013 RUN if test -e modules/reana-commons; then \ if [ "${DEBUG}" -gt 0 ]; then \ - pip install --no-cache-dir -e "modules/reana-commons[kubernetes]" --upgrade; \ + pip install --no-cache-dir -e "modules/reana-commons[cwl]" --upgrade; \ else \ - pip install --no-cache-dir "modules/reana-commons[kubernetes]" --upgrade; \ + pip install --no-cache-dir "modules/reana-commons[cwl]" --upgrade; \ fi \ fi