Release notes for the inference-nv-pytorch 26.02 container image.
Main features and bug fixes
Main features
Images are available for CUDA 12.8 and CUDA 13.0:
The CUDA 12.8 images support only the amd64 architecture.
The CUDA 13.0 images support both the amd64 and aarch64 architectures.
vLLM images: Torch upgraded to 2.10.0, vLLM to v0.15.1.
SGLang images: Torch upgraded to 2.10.0, SGLang to v0.5.9.
Bug fixes
None.
Image specifications
Image | inference-nv-pytorch | |||||
Tag | 26.02-vllm0.15.1-pytorch2.10-cu128-20260211-serverless | 26.02-sglang0.5.9-pytorch2.10-cu128-20260227-serverless | 26.02-vllm0.15.1-pytorch2.10-cu130-20260211-serverless | 26.02-sglang0.5.9-pytorch2.10-cu130-20260227-serverless | ||
Architecture | amd64 | amd64 | amd64 | aarch64 | amd64 | aarch64 |
Use case | large model inference | large model inference | large model inference | large model inference | large model inference | large model inference |
Framework | pytorch | pytorch | pytorch | pytorch | pytorch | pytorch |
Requirements | NVIDIA Driver release >= 570 | NVIDIA Driver release >= 570 | NVIDIA Driver release >= 580 | NVIDIA Driver release >= 580 | NVIDIA Driver release >= 580 | NVIDIA Driver release >= 580 |
System components |
|
|
|
|
|
|
Assets
Public images
CUDA 12.8 assets
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-vllm0.15.1-pytorch2.10-cu128-20260211-serverless
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-sglang0.5.9-pytorch2.10-cu128-20260227-serverless
CUDA 13.0 assets
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-vllm0.15.1-pytorch2.10-cu130-20260211-serverless
egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:26.02-sglang0.5.9-pytorch2.10-cu130-20260227-serverless
VPC images
All existing and new ACS AI container images in the egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun repository support IN-VPC pulling.
Replace the public network registry host in your image URI with the region-specific VPC endpoint.
URI component | Public network | IN-VPC |
Registry host |
|
|
Repository |
|
|
Image and tag |
|
|
Replace {region-id} with the ID of the region where your ACS service runs. For example:
Region | Region ID |
China (Beijing) |
|
China (Ulanqab) |
|
For the full list of supported regions, see Regions.
Example {image:tag} values:
inference-nv-pytorch:25.10-vllm0.11.0-pytorch2.8-cu128-20251028-serverlesstraining-nv-pytorch:25.10-serverless
These images are for ACS and the Lingjun multi-tenant offering. Do not use them in Lingjun single-tenant scenarios.
Driver requirements
CUDA 12.8: NVIDIA Driver release >= 570
CUDA 13.0: NVIDIA Driver release >= 580
Quick start
Pull the inference-nv-pytorch image with Docker and test inference with the Qwen2.5-7B-Instruct model.
To use this image in ACS, select it from the Artifacts Center on the Create Workload page in the console, or specify the image reference in a YAML file. Related guides for building model inference services with ACS GPU compute:
Pull the inference container image.
docker pull egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag]Use ModelScope to download the open-source model.
pip install modelscope cd /mnt modelscope download --model Qwen/Qwen2.5-7B-Instruct --local_dir ./Qwen2.5-7B-InstructEnter the container.
docker run -it --rm --gpus all --network=host --privileged --init --ipc=host \ --ulimit memlock=-1 --ulimit stack=67108864 \ -v /mnt/:/mnt/ \ egslingjun-registry.cn-wulanchabu.cr.aliyuncs.com/egslingjun/inference-nv-pytorch:[tag]Test the vLLM chat feature.
Start the server.
python3 -m vllm.entrypoints.openai.api_server \ --model /mnt/Qwen2.5-7B-Instruct \ --trust-remote-code --disable-custom-all-reduce \ --tensor-parallel-size 1Run a client-side test.
curl http://localhost:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "/mnt/Qwen2.5-7B-Instruct", "messages": [ {"role": "system", "content": "You are a friendly AI assistant."}, {"role": "user", "content": "Introduce deep learning."} ]}'The vLLM documentation covers additional configuration options.
Known issues
In this release, these images do not support the
deepgpu-comfyuiplugin.