X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/09a2e88c51e5432e607f2a38466e55b4ba15e887..cdd31206b8c228ffcdc6f0ab7f0017d537836678:/docker/jobs/Dockerfile diff --git a/docker/jobs/Dockerfile b/docker/jobs/Dockerfile index 9b1be1e74d..c0fe145db1 100644 --- a/docker/jobs/Dockerfile +++ b/docker/jobs/Dockerfile @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + # Based on Debian Jessie FROM debian:jessie MAINTAINER Ward Vandewege @@ -19,6 +23,9 @@ RUN apt-get install -yq --no-install-recommends \ python-arvados-python-client=$python_sdk_version \ python-arvados-cwl-runner=$cwl_runner_version +# use the Python executable from the python-arvados-python-client package +RUN rm -f /usr/bin/python && ln -s /usr/share/python2.7/dist/python-arvados-python-client/bin/python /usr/bin/python + # Install dependencies and set up system. RUN /usr/sbin/adduser --disabled-password \ --gecos 'Crunch execution user' crunch && \