Skip to content
Snippets Groups Projects
Commit 5d96a8ee authored by Denis Sergeev's avatar Denis Sergeev
Browse files

podwrap: add support for python3 execution

parent 9e3f254b
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,11 @@ pw_userns_gid=${pw_userns_gid:-1000}
mkdir -p "$worktree/artifacts"
cmd="bash"
[[ "$prog" == *.py ]] && cmd="python3"
exec podman run -it --rm --name "$container_name" \
-v "$worktree/artifacts:/artifacts" \
-v "$worktree:/host:ro" \
$pw_args \
"$pw_image" bash "$prog" $@
"$pw_image" "$cmd" "$prog" $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment