mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 22:56:15 +01:00
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPDIR=$(dirname $(readlink -f $0))
|
|
|
|
podman build "$@" \
|
|
--tag obs-server \
|
|
--volume="$TOPDIR":/opt/obs \
|
|
$TOPDIR \
|
|
2>&1 | tee container-build.log
|