So I build container using buildah bud:
buildah bud -t ${imageFullName()} -f ${componentName}/DockerfileTests ${buildArgsStr} ${componentName}
But then, when I try to run a command inside this container:
buildah run ${componentName} -- python3 -m pytest src/test_models.py
it returns error reading build container: container not known
. How can I solve this issue?