8654: Passes in local testing.
[arvados.git] / docker / jobs / Dockerfile
1 # Based on Debian Jessie
2 FROM debian:jessie
3 MAINTAINER Ward Vandewege <ward@curoverse.com>
4
5 ENV DEBIAN_FRONTEND noninteractive
6
7 ADD apt.arvados.org.list /etc/apt/sources.list.d/
8 RUN apt-key adv --keyserver pool.sks-keyservers.net --recv 1078ECD7
9
10 RUN apt-get update -q && apt-get install -qy git python-pip python-virtualenv python-arvados-python-client python-dev libcurl4-gnutls-dev nodejs python-arvados-cwl-runner
11
12 RUN gpg --keyserver pool.sks-keyservers.net --recv-keys D39DC0E3
13
14 # Install dependencies and set up system.
15 # The FUSE packages help ensure that we can install the Python SDK (arv-mount).
16 RUN /usr/sbin/adduser --disabled-password \
17       --gecos 'Crunch execution user' crunch && \
18     /usr/bin/install --directory --owner=crunch --group=crunch --mode=0700 /keep /tmp/crunch-src /tmp/crunch-job
19
20 USER crunch