Initial commit of vLLM Head Run project files

This commit is contained in:
JK Woo
2026-06-26 13:57:21 +00:00
parent 35d659ac38
commit 5063aa98d8
1262 changed files with 245164 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM vllm/vllm-openai:latest
# 엄격한 의존성 격리 및 버전 관리를 위해 Docker 이미지 빌드 단계에서 Ray 고정 설치
RUN python3 -m pip install -U --no-cache-dir "ray[default]==2.40.0" --break-system-packages
# 빌드가 완료된 이미지 내부의 PATH 환경변수 자체를 교정하여 command -v 탐색 보장
ENV PATH="/usr/local/bin:/root/.local/bin:${PATH}"