X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b7de0ac72fe6e5270d58940f782e630789391f05..07bf4bb6d787c276f338846eb46c2b527a323896:/docker/jobs/Dockerfile diff --git a/docker/jobs/Dockerfile b/docker/jobs/Dockerfile index 2cad65c527..e140f27752 100644 --- a/docker/jobs/Dockerfile +++ b/docker/jobs/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Brett Smith # Install dependencies and set up system. # The FUSE packages help ensure that we can install the Python SDK (arv-mount). RUN /usr/bin/apt-get install -q -y python-dev python-llfuse python-pip \ - libio-socket-ssl-perl libjson-perl liburi-perl libwww-perl \ + libio-socket-ssl-perl libjson-perl liburi-perl libwww-perl dtrx \ fuse libattr1-dev libfuse-dev && \ /usr/sbin/adduser --disabled-password \ --gecos 'Crunch execution user' crunch && \ @@ -13,10 +13,7 @@ RUN /usr/bin/apt-get install -q -y python-dev python-llfuse python-pip \ # Install Arvados packages. RUN (find /usr/src/arvados/sdk -name '*.gem' -print0 | \ - xargs -0rn 1 gem install) && \ - cd /usr/src/arvados/services/fuse && \ - python setup.py install && \ - cd /usr/src/arvados/sdk/python && \ - python setup.py install + xargs -0rn 1 /usr/local/rvm/bin/rvm-exec default gem install) && \ + apt-get -qqy install python-arvados-fuse USER crunch