cleanup: remove explicit installation of nodejs in our arvados/jobs
authorWard Vandewege <ward@curii.com>
Thu, 3 Sep 2020 14:20:26 +0000 (10:20 -0400)
committerWard Vandewege <ward@curii.com>
Thu, 3 Sep 2020 14:20:26 +0000 (10:20 -0400)
Dockerfile. It's a dependency of the package now.

refs #16788

Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward@curii.com>

docker/jobs/Dockerfile

index 9949b1930c174024c63bfd0b20850a4a6a9ac826..69ea34bc81c412f0ec21d6747db904a163f3000f 100644 (file)
@@ -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