mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-14 06:17:18 +01:00
11 lines
149 B
Bash
Executable File
11 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPDIR=$(dirname $(readlink -f $0))
|
|
|
|
podman build "$@" \
|
|
--tag obs-server \
|
|
$TOPDIR \
|
|
2>&1 | tee container-build.log
|
|
|
|
exit $?
|