summaryrefslogtreecommitdiffstats
path: root/build/buildah-astra.sh
blob: 6f6e7b1ccec805144cefa11977eea1a3634b1df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env bash

set -o errexit

tag=latest
[ -n "$1" ] && tag="$1"

container=$(buildah from pycuda:$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 "astra"

buildah commit --format docker $container astra:$tag