feat: add modelhub cicd workflow
All checks were successful
Docker Build and Push / docker (push) Successful in 1h31m17s

This commit is contained in:
2026-06-01 19:58:41 +08:00
parent 72387e4fa8
commit f9ada6788f
3 changed files with 147 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG BASE_IMAGE=registry.iluvatar.com.cn:10443/customer/sz/vllm0.17.0-4.4.0-x86:v4.1
FROM ${BASE_IMAGE}
WORKDIR /home
RUN rm -rf /usr/local/lib/python3.12/dist-packages/vllm \
/usr/local/lib/python3.12/dist-packages/vllm-*.dist-info
COPY vllm /usr/local/lib/python3.12/dist-packages/vllm
COPY vllm-0.16.1rc0+corex.4.4.0.dist-info /usr/local/lib/python3.12/dist-packages/vllm-0.16.1rc0+corex.4.4.0.dist-info
ENTRYPOINT ["/bin/bash"]