prosody/tools/build-env/build.sh
Kim Alvefur d26ccd8400 tools: Fix selection of container engine
Seems command -v in sh only checks and returns one argument, unlike
bash.
2023-12-12 16:19:04 +01:00

16 lines
339 B
Bash
Executable file

#!/bin/sh -eux
cd "$(dirname "$0")"
containerify="$(command -v podman || command -v docker)"
if [ -z "$containerify" ]; then
echo "podman or docker required" >&2
exit 1
fi
$containerify build -f ./Containerfile --squash \
--build-arg os="${2:-debian}" \
--build-arg dist="${1:-testing}" \
-t "prosody.im/build-env:${1:-testing}"