In the arvados/jobs image, use the Python executable from the
[arvados.git] / docker / jobs / Dockerfile
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 # Based on Debian Jessie
6 FROM debian:jessie
7 MAINTAINER Ward Vandewege <ward@curoverse.com>
8
9 ENV DEBIAN_FRONTEND noninteractive
10
11 ADD apt.arvados.org.list /etc/apt/sources.list.d/
12 RUN apt-key adv --keyserver pool.sks-keyservers.net --recv 1078ECD7
13 RUN gpg --keyserver pool.sks-keyservers.net --recv-keys D39DC0E3
14
15 ARG python_sdk_version
16 ARG cwl_runner_version
17 RUN echo cwl_runner_version $cwl_runner_version python_sdk_version $python_sdk_version
18
19 RUN apt-get update -q
20 RUN apt-get install -yq --no-install-recommends \
21     git python-pip python-virtualenv \
22     python-dev libgnutls28-dev libcurl4-gnutls-dev nodejs \
23     python-arvados-python-client=$python_sdk_version \
24     python-arvados-cwl-runner=$cwl_runner_version
25
26 # use the Python executable from the python-arvados-python-client package
27 RUN rm -f /usr/bin/python && ln -s /usr/share/python2.7/dist/python-arvados-python-client/bin/python /usr/bin/python
28
29 # Install dependencies and set up system.
30 RUN /usr/sbin/adduser --disabled-password \
31       --gecos 'Crunch execution user' crunch && \
32     /usr/bin/install --directory --owner=crunch --group=crunch --mode=0700 /keep /tmp/crunch-src /tmp/crunch-job
33
34 USER crunch