Files
bentoml_rep/dockerfile

10 lines
172 B
Plaintext
Raw Permalink Normal View History

2025-08-13 00:03:21 +08:00
FROM python:3.10
WORKDIR /app/
COPY ./src /app/
RUN pip install --no-cache-dir scikit-learn bentoml -i https://mirrors.aliyun.com/pypi/simple/
CMD ["bentoml", "serve"]