diff options
author | Suren A. Chilingaryan <csa@ipecompute4.ands.kit.edu> | 2022-09-08 02:16:52 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@ipecompute4.ands.kit.edu> | 2022-09-08 02:16:52 +0200 |
commit | ea2245b35cbfddb8c7473453b7d977b0a64f61b2 (patch) | |
tree | c97fb8c2e4c0f081eeb44cfb360f5d54c577a725 /build/update.sh | |
parent | a3f77df3864464fa8cd6fdc613d2cf4bbae39124 (diff) | |
download | ccpi-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/update.sh')
-rw-r--r-- | build/update.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/build/update.sh b/build/update.sh index a3dc9ff..6a8ac7a 100644 --- a/build/update.sh +++ b/build/update.sh @@ -3,10 +3,14 @@ set -o errexit image="$1" -[ -n "$image" ] || { echo "Usage: $0 <astra|ufo|ccpi|ccpi-remote|tomo|tomo-remote|imageX>"; exit 1; } +[ -n "$image" ] || { echo "Usage: $0 <astra|ufo|ccpi|ccpi-remote|tomo|tomo-remote|imageX> [tag]"; exit 1; } + +tag=latest +[ -n "$2" ] && tag="$2" + #container=cuda-working-container-15 -container=$(buildah from localhost/${image}) +container=$(buildah from localhost/${image}:${tag}) #buildah run $container bash #exit @@ -15,5 +19,5 @@ buildah config --env CIL_VERSION=19.10 --env HOME=/ccpi/data --env LD_LIBRARY_PA buildah copy $container setup /root/setup buildah run $container bash /root/setup/repos.sh "all" "/root/setup" -#buildah commit --format docker $container ccpi:latest -echo "buildah commit --format docker $container ${image}:latest" +#buildah commit --format docker $container ccpi:${tag} +echo "buildah commit --format docker $container ${image}:${tag}" |