Software /
code /
prosody
File
tools/build-env/build.sh @ 13602:5033029130f5
mod_pubsub: Quiet down check for service admin
This produced a *lot* of noise, especially listing items.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 07 Jan 2025 23:37:41 +0100 |
parent | 13403:0369f6986824 |
line wrap: on
line source
#!/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}"