1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-03-02 22:22:10 +01:00

12 lines
183 B
Bash
Raw Normal View History

#!/bin/sh
TOPDIR=$(dirname $(readlink -f $0))
podman build "$@" \
--tag obs-server \
--volume="$TOPDIR":/opt/obs \
$TOPDIR \
2>&1 | tee container-build.log
exit $?