prosody/tools/build-env/here.sh
Kim Alvefur b239732046 tools/build-env: Tools for building and testing in a container
./tools/build-env/build.sh
Creates a container image based on Debian or Ubuntu

./tools/build-env/here.sh
Starts a container and mounts in the current working directory, from
where one can ./configure; make; make test etc
2023-11-12 13:02:38 +01:00

19 lines
311 B
Bash
Executable file

#!/bin/sh -eux
tag="testing"
if [ "$#" -gt 0 ]; then
tag="$1"
shift
fi
containerify="$(command -v podman docker)"
$containerify run -it --rm \
-v "$PWD:$PWD" \
-w "$PWD" \
-v "$HOME/.cache:$PWD/.cache" \
--entrypoint /bin/bash \
--userns=keep-id \
--network \
host "prosody.im/build-env:$tag" "$@"