Disable the old jobs api.
[arvados-k8s.git] / dockerfiles / Dockerfile.shell_server-runtime
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 FROM phusion/baseimage
6
7 RUN /usr/bin/apt-key adv --keyserver pool.sks-keyservers.net --recv 1078ECD7
8
9 RUN echo "deb http://apt.arvados.org/ xenial-dev main" | tee /etc/apt/sources.list.d/arvados.list
10
11 RUN apt-get update && apt-get install -qqy tzdata
12
13 RUN apt-get install -qqy \
14     apt-transport-https \
15     ca-certificates \
16     curl \
17     software-properties-common \
18     sudo
19 RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
20 RUN add-apt-repository \
21    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
22    $(lsb_release -cs) \
23    stable"
24 RUN apt-get update
25 RUN apt-get install -y docker-ce
26
27 RUN apt-get install -y make gcc libcurl4-openssl-dev ruby-full git
28
29 COPY bootstrap.sh /usr/local/bin/bootstrap.sh
30
31 ENTRYPOINT []