This repository has been archived on 2025-09-06. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
|
|
buildah_run_script() {
|
|
local cid script
|
|
cid=$1
|
|
shift
|
|
script=$1
|
|
shift
|
|
buildah run \
|
|
--mount type=cache,target=/var/db/repos/gentoo \
|
|
--mount type=cache,target=/var/cache \
|
|
-- "${cid}" \
|
|
sh -s - "$@" \
|
|
< "${script}"
|
|
}
|