From abac34fa2ff0cd63ce47ddb1d608c6ed2d1bb6ae Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 10 Jun 2024 13:16:17 +0200 Subject: [PATCH] Background compilation/rpm build with podman --- build_podman.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_podman.sh b/build_podman.sh index eed885d..f8c4753 100755 --- a/build_podman.sh +++ b/build_podman.sh @@ -4,4 +4,5 @@ podman build -t solutiontm:latest -f Containerfile || exit 1 # Run it, mount repo as /source and execute "bash build_rpm.sh" -podman run -i -v $(pwd):/source:Z solutiontm:latest bash build_rpm.sh || exit 1 \ No newline at end of file +podman run -d -v $(pwd):/source:Z -n rpmbuild solutiontm:latest bash build_rpm.sh || exit 1 +echo "Continuing build in background..."