diff options
author | Suren A. Chilingaryan <csa@ipecompute2.ands.kit.edu> | 2020-11-09 20:16:44 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@ipecompute2.ands.kit.edu> | 2020-11-09 20:16:44 +0100 |
commit | 28190b6d4664508ad8b1cf88a82378b02f487cfa (patch) | |
tree | 8bb6f21b9feb1013f67a4c1a147c95c4ff976fc4 /build/buildah-astra.sh | |
parent | 8fb3c0a3f96024786305a1234fe5cfb70e6f00c0 (diff) | |
download | ccpi-28190b6d4664508ad8b1cf88a82378b02f487cfa.tar.gz ccpi-28190b6d4664508ad8b1cf88a82378b02f487cfa.tar.bz2 ccpi-28190b6d4664508ad8b1cf88a82378b02f487cfa.tar.xz ccpi-28190b6d4664508ad8b1cf88a82378b02f487cfa.zip |
Support ssh server for remote debugging
Diffstat (limited to 'build/buildah-astra.sh')
-rw-r--r-- | build/buildah-astra.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/build/buildah-astra.sh b/build/buildah-astra.sh new file mode 100644 index 0000000..fa69db6 --- /dev/null +++ b/build/buildah-astra.sh @@ -0,0 +1,33 @@ +#! /usr/bin/env bash + +set -o errexit + +container=$(buildah from nvidia/cuda:10.1-devel-ubuntu18.04) + +buildah config --label maintainer="Suren A. Chilingaryan <csa@suren.me>" $container +buildah config --env LANG="C.UTF-8" --env LC_ALL="C.UTF-8" --env TERM="xterm" $container + +buildah run $container sh -c 'echo "ssh:x:101:" >> /etc/group' +buildah run $container sh -c 'echo "sshd:x:101:101:sshd:/dev/null:/sbin/nologin" >> /etc/passwd' +buildah run $container sh -c 'echo "messagebus:x:102:" >> /etc/group' +buildah run $container sh -c 'echo "messagebus:x:102:102:messagebus:/dev/null:/sbin/nologin" >> /etc/passwd' +buildah run $container sh -c 'echo "rdma:x:103:" >> /etc/group' +buildah run $container sh -c 'echo "systemd-journal:x:104:" >> /etc/group' +buildah run $container sh -c 'echo "systemd-network:x:105:" >> /etc/group' +buildah run $container sh -c 'echo "systemd-network:x:105:105:systemd-network:/dev/null:/sbin/nologin" >> /etc/passwd' +buildah run $container sh -c 'echo "systemd-resolve:x:106:" >> /etc/group' +buildah run $container sh -c 'echo "systemd-resolve:x:106:106:systemd-resolve:/dev/null:/sbin/nologin" >> /etc/passwd' + +buildah run $container sh -c 'apt-get update --fix-missing && apt-get install -y bash wget bzip2 mc ca-certificates git openssh-server' +buildah run $container sh -c 'apt-get install -y python3 python3-setuptools python3-pip cython3' +buildah run $container sh -c 'apt-get install -y cmake autoconf automake libtool libboost-all-dev' + +buildah run $container sh -c 'update-alternatives --remove python /usr/bin/python2' +buildah run $container sh -c 'update-alternatives --install /usr/bin/python python /usr/bin/python3 10' + +buildah copy $container pre-setup /root/pre-setup +buildah run $container pip3 install -r /root/pre-setup/requirements.txt + +buildah copy $container setup /root/setup +buildah run $container bash /root/setup/repos.sh "astra" +buildah commit --format docker $container astra:latest |