X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a1fc48d0bdba5062da9d8ea57e2cda805421aab8..4df1175e30c21850af394fcd60c9bb7ca3d981a5:/docker/jobs/Dockerfile diff --git a/docker/jobs/Dockerfile b/docker/jobs/Dockerfile index 2cad65c527..313dd3662a 100644 --- a/docker/jobs/Dockerfile +++ b/docker/jobs/Dockerfile @@ -3,8 +3,9 @@ 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 \ +RUN /usr/bin/apt-get install -q -y \ + python-dev python-llfuse python-pip python-virtualenv \ + 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 +14,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