This message was deleted.
# ask-for-help
s
This message was deleted.
👀 1
s
bentoml build
should output the tag of the bento at the end---it's not ideal, but you should be able to parse the tag out of its output.
s
Can you elaborate?How to use this
s
TAG=$(bentoml build | sed -n 's/Successfully built Bento(tag="\(.*\)")\./\1/p'
should get you the tag, then
bentoml containerize $TAG
should work. We should definitely come up with a better solution, though.