mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
./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
19 lines
311 B
Bash
Executable file
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" "$@"
|