# bi_150-vllm This repository contains the extracted `vLLM 0.17.0+corex.20260420090923` Python package used to overlay the vendor image `registry.iluvatar.com.cn:10443/customer/sz/vllm0.17.0-4.4.0-x86:v4.1`. ## Included files - `vllm/` The Python package code copied from the image payload. - `vllm-0.17.0+corex.20260420090923.dist-info/` The package metadata extracted from the image. - `Dockerfile` Builds a new image by replacing the installed `vllm` package in the vendor base image. ## Build Run the following command from the repository root: ```bash docker build --pull=false \ --build-arg BASE_IMAGE=registry.iluvatar.com.cn:10443/customer/sz/vllm0.17.0-4.4.0-x86:v4.1 \ -t bi_150_vllm:0.17.0 \ . ``` ## Verify ```bash docker run --rm -it bi_150_vllm:0.17.0 \ python3 -c "import vllm; print(vllm.__file__); print(vllm.__version__)" ``` ## Notes - This is an overlay-style repository, not the original upstream git source tree. - The Docker image keeps the vendor runtime stack and only replaces the Python package files.