Bump everything up to the latest stable release (1.3.1), and use Ubuntu 18.04
[arvados-k8s.git] / dockerfiles / Dockerfile.runtime
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 FROM ubuntu:18.04
6
7 RUN apt-get update && apt-get install -y gnupg2
8
9 RUN echo "deb http://apt.arvados.org/ bionic main" > /etc/apt/sources.list.d/apt.arvados.org.list
10
11 ADD 1078ECD7.asc /tmp/
12 RUN cat /tmp/1078ECD7.asc | apt-key add -
13
14 RUN apt-get update
15
16 COPY bootstrap.sh /usr/local/bin/bootstrap.sh
17
18 ENTRYPOINT []