Building bldr on a podman base results in the following issue: cloudflare/workers-sdk#9755
Can be fixed with this snippet (from that link and an additional exclusion):
`#!/bin/bash
# Shim to replace Docker CLI with Podman and strip unsupported flags
ARGS=()
for arg in "$@"; do
if [[ "$arg" != --provenance* && "$arg" != --push* ]]; then
ARGS+=("$arg")
fi
done
exec podman "${ARGS[@]}"`
Of course permissions and path need to be set as well.