This repository has been archived on 2025-09-06. You can view files and clone it, but cannot push or open issues/pull-requests.
container-images/common.sh

16 lines
291 B
Bash

#!/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}"
}