Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
7713e25c
"examples/git@developer.sourcefind.cn:OpenDAS/dynamo.git" did not exist on "deb6c7e8141be5bdedf2d1ffe8d7331f6e9e4ff0"
Commit
7713e25c
authored
Mar 14, 2025
by
Anant Sharma
Committed by
GitHub
Mar 14, 2025
Browse files
build: use wheel for vllm install (#163)
parent
0f4529e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
container/Dockerfile.vllm
container/Dockerfile.vllm
+7
-1
No files found.
container/Dockerfile.vllm
View file @
7713e25c
...
@@ -170,7 +170,13 @@ RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requi
...
@@ -170,7 +170,13 @@ RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requi
ARG VLLM_REF="v0.7.2"
ARG VLLM_REF="v0.7.2"
ARG VLLM_PATCH="vllm_${VLLM_REF}-dynamo-kv-disagg-patch.patch"
ARG VLLM_PATCH="vllm_${VLLM_REF}-dynamo-kv-disagg-patch.patch"
RUN --mount=type=bind,source=./container/deps/,target=/tmp/deps \
RUN --mount=type=bind,source=./container/deps/,target=/tmp/deps \
bash /tmp/deps/vllm/install.sh --patch /tmp/deps/vllm/${VLLM_PATCH} --ref ${VLLM_REF} --install-cmd "uv pip install --editable" --use-precompiled --installation-dir /opt/vllm
git clone https://github.com/vllm-project/vllm.git vllm && \
cd vllm && \
git checkout ${VLLM_REF} && \
git apply /tmp/deps/vllm/${VLLM_PATCH} && \
VLLM_USE_PRECOMPILED=1 uv build --wheel --out-dir /workspace/dist && \
uv pip install /workspace/dist/vllm*cp312*.whl && \
cd .. && rm -rf vllm
# Install genai-perf for benchmarking
# Install genai-perf for benchmarking
ARG GENAI_PERF_TAG="25d0188713adc47868d6b3f22426375237a90529"
ARG GENAI_PERF_TAG="25d0188713adc47868d6b3f22426375237a90529"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment