Bump everything up to the latest stable release (1.3.1), and use Ubuntu 18.04
[arvados-k8s.git] / dockerfiles / Dockerfile.slurm-runtime
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 FROM cure/arvados-runtime
6
7 RUN apt-get update && apt-get install -y \
8     apt-transport-https \
9     ca-certificates \
10     curl \
11     software-properties-common \
12     sudo
13 RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
14 RUN add-apt-repository \
15    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
16    $(lsb_release -cs) \
17    stable"
18 RUN apt-get update
19 RUN apt-get install -y slurmd slurmctld munge docker-ce
20 RUN mkdir /var/run/munge
21 RUN chown munge /var/run/munge