X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/609646134bcd8fc3a7fd500848220741ecc4a9d2..d353e9be958d39a1aaf6ca83f269d077c74c8848:/sdk/dev-jobs.dockerfile diff --git a/sdk/dev-jobs.dockerfile b/sdk/dev-jobs.dockerfile index 38fefd0c4d..d33956ccc3 100644 --- a/sdk/dev-jobs.dockerfile +++ b/sdk/dev-jobs.dockerfile @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + # Dockerfile for building an arvados/jobs Docker image from local git tree. # # Intended for use by developers working on arvados-python-client or @@ -16,17 +20,20 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -q && apt-get install -qy git python-pip python-virtualenv python-dev libcurl4-gnutls-dev libgnutls28-dev nodejs python-pyasn1-modules -RUN pip install -U setuptools +RUN pip install -U setuptools six requests ARG sdk ARG runner +ARG salad ARG cwltool ADD python/dist/$sdk /tmp/ +ADD cwl/salad_dist/$salad /tmp/ ADD cwl/cwltool_dist/$cwltool /tmp/ ADD cwl/dist/$runner /tmp/ RUN cd /tmp/arvados-python-client-* && python setup.py install +RUN if test -d /tmp/schema-salad-* ; then cd /tmp/schema-salad-* && python setup.py install ; fi RUN if test -d /tmp/cwltool-* ; then cd /tmp/cwltool-* && python setup.py install ; fi RUN cd /tmp/arvados-cwl-runner-* && python setup.py install