summaryrefslogtreecommitdiffstats
path: root/build/buildah-tomo.sh
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@ipecompute4.ands.kit.edu>2022-09-08 02:16:52 +0200
committerSuren A. Chilingaryan <csa@ipecompute4.ands.kit.edu>2022-09-08 02:16:52 +0200
commitea2245b35cbfddb8c7473453b7d977b0a64f61b2 (patch)
treec97fb8c2e4c0f081eeb44cfb360f5d54c577a725 /build/buildah-tomo.sh
parenta3f77df3864464fa8cd6fdc613d2cf4bbae39124 (diff)
downloadccpi-ea2245b35cbfddb8c7473453b7d977b0a64f61b2.tar.gz
ccpi-ea2245b35cbfddb8c7473453b7d977b0a64f61b2.tar.bz2
ccpi-ea2245b35cbfddb8c7473453b7d977b0a64f61b2.tar.xz
ccpi-ea2245b35cbfddb8c7473453b7d977b0a64f61b2.zip
Update containers to ubuntu 22.04, gcc-12; include perf/gdb; add python libraries for opencv, machine learning, etc.
Diffstat (limited to 'build/buildah-tomo.sh')
-rw-r--r--build/buildah-tomo.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/build/buildah-tomo.sh b/build/buildah-tomo.sh
index ed9287e..486f182 100644
--- a/build/buildah-tomo.sh
+++ b/build/buildah-tomo.sh
@@ -2,10 +2,13 @@
set -o errexit
-container=$(buildah from ccpi:latest)
+tag=latest
+[ -n "$1" ] && tag="$1"
+
+container=$(buildah from ccpi:$tag)
buildah config --env LANG="C.UTF-8" --env LC_ALL="C.UTF-8" --env TERM="xterm" --env HOME=/ccpi/data $container
buildah run $container bash /root/setup/repos.sh "ufo"
-buildah commit --format docker $container tomo:latest
+buildah commit --format docker $container tomo:$tag