From 201812edc08fc1fd11cc6635e2224adad2b913f5 Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Thu, 3 Sep 2020 10:20:26 -0400 Subject: [PATCH] cleanup: remove explicit installation of nodejs in our arvados/jobs Dockerfile. It's a dependency of the package now. refs #16788 Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- docker/jobs/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/jobs/Dockerfile b/docker/jobs/Dockerfile index 9949b1930c..69ea34bc81 100644 --- a/docker/jobs/Dockerfile +++ b/docker/jobs/Dockerfile @@ -23,8 +23,7 @@ ARG cwl_runner_version RUN echo cwl_runner_version $cwl_runner_version python_sdk_version $python_sdk_version RUN apt-get update -q -RUN apt-get install -yq --no-install-recommends nodejs \ - python3-arvados-cwl-runner=$cwl_runner_version +RUN apt-get install -yq --no-install-recommends python3-arvados-cwl-runner=$cwl_runner_version # use the Python executable from the python-arvados-cwl-runner package RUN rm -f /usr/bin/python && ln -s /usr/share/python3/dist/python3-arvados-cwl-runner/bin/python /usr/bin/python -- 2.30.2