X-Git-Url: https://git.arvados.org/arvados-k8s.git/blobdiff_plain/8d4cc600bff38a9680efa58c180cc89712664563..4d70e7402c13d3049fb1c29e8c5485955e3403ce:/dockerfiles/Dockerfile.slurm-runtime diff --git a/dockerfiles/Dockerfile.slurm-runtime b/dockerfiles/Dockerfile.slurm-runtime new file mode 100644 index 0000000..91b2f94 --- /dev/null +++ b/dockerfiles/Dockerfile.slurm-runtime @@ -0,0 +1,21 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +FROM cure/arvados-runtime + +RUN apt-get update && apt-get install -y \ + apt-transport-https \ + ca-certificates \ + curl \ + software-properties-common \ + sudo +RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - +RUN add-apt-repository \ + "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ + $(lsb_release -cs) \ + stable" +RUN apt-get update +RUN apt-get install -y slurm-llnl munge docker-ce +RUN mkdir /var/run/munge +RUN chown munge /var/run/munge