X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/282d7a0c9d8279fa0a1293573e4313c8223be1b5..e2267bd99209651c61425f335230e515421b2ef4:/sdk/dev-jobs.dockerfile diff --git a/sdk/dev-jobs.dockerfile b/sdk/dev-jobs.dockerfile index dd067e9778..60db4a8898 100644 --- a/sdk/dev-jobs.dockerfile +++ b/sdk/dev-jobs.dockerfile @@ -13,19 +13,17 @@ # (This dockerfile file must be located in the arvados/sdk/ directory because # of the docker build root.) -FROM debian:9 -MAINTAINER Ward Vandewege +FROM debian:buster-slim +MAINTAINER Arvados Package Maintainers ENV DEBIAN_FRONTEND noninteractive -ARG pythoncmd=python -ARG pipcmd=pip +ARG pythoncmd=python3 +ARG pipcmd=pip3 RUN apt-get update -q && apt-get install -qy --no-install-recommends \ git ${pythoncmd}-pip ${pythoncmd}-virtualenv ${pythoncmd}-dev libcurl4-gnutls-dev \ - libgnutls28-dev nodejs ${pythoncmd}-pyasn1-modules build-essential - -RUN $pipcmd install -U setuptools six requests + libgnutls28-dev nodejs ${pythoncmd}-pyasn1-modules build-essential ${pythoncmd}-setuptools ARG sdk ARG runner @@ -37,11 +35,17 @@ ADD cwl/salad_dist/$salad /tmp/ ADD cwl/cwltool_dist/$cwltool /tmp/ ADD cwl/dist/$runner /tmp/ +RUN $pipcmd install wheel RUN cd /tmp/arvados-python-client-* && $pipcmd install . RUN if test -d /tmp/schema-salad-* ; then cd /tmp/schema-salad-* && $pipcmd install . ; fi -RUN if test -d /tmp/cwltool-* ; then cd /tmp/cwltool-* && $pipcmd install networkx==2.2 && $pipcmd install . ; fi +RUN if test -d /tmp/cwltool-* ; then cd /tmp/cwltool-* && $pipcmd install . ; fi RUN cd /tmp/arvados-cwl-runner-* && $pipcmd install . +# Sometimes Python dependencies install successfully but don't +# actually work. So run arvados-cwl-runner here to catch fun +# dependency errors like pkg_resources.DistributionNotFound. +RUN arvados-cwl-runner --version + # Install dependencies and set up system. RUN /usr/sbin/adduser --disabled-password \ --gecos 'Crunch execution user' crunch && \