changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / virt/build-ci-operator.sh

changeset 45: e627a4f4046a
child: 28ed81f2d290
author: ellis <ellis@rwest.io>
date: Tue, 02 Jan 2024 20:17:01 -0500
permissions: -rwxr-xr-x
description: fix
1 #!/usr/bin/env bash
2 id=$(buildah from ci-worker)
3 buildah add $id etc/skel /etc
4 buildah run $id adduser $USER -D
5 buildah config --workingdir /home/$USER $id
6 buildah config --volume /mnt/y $id
7 buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id
8 buildah commit $id ci-operator