Files
builder/makepkg-podman
T

17 lines
265 B
Bash
Raw Normal View History

2021-02-27 02:50:00 +03:00
#!/usr/bin/env bash
2021-03-06 06:41:56 +03:00
image=${1:-localhost/spark:autobuilder}
2021-02-27 02:50:00 +03:00
2021-03-06 06:41:56 +03:00
podman_cmd=(
podman run --rm -u root
--userns=keep-id
-v "$PWD:/buildroot"
--workdir /buildroot
--name "autobuilder.$$"
--env "BUILDUSER=$USER"
--entrypoint /build
"$image"
)
2021-02-27 02:50:00 +03:00
2021-03-06 06:41:56 +03:00
"${podman_cmd[@]}"