错误: 使用 `dockerfile_template` 时, `bentoml containerize` 会出现 `ValueError: Accessing file outside of current working directory` 错误 (v1.4.36)
作者: seethap创建于 2026年3月9日更新于 2026年9月8日
标签bug
Create minimal service
cat > service.py << 'EOF' import bentoml @bentoml.service(name="my_service") class MyService: @bentoml.api def predict(self) -> str: return "hello" EOF
内容来源: bentoml/BentoML