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

set -o errexit

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:$tag