Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ RUN SGLANG_DIR=\$(pip show sglang | grep "Editable project location" | cut -d' '
{ echo "Failed to apply \$patch"; exit 1; }; \\
fi \\
done && \\
pip install --no-deps /tmp/TraceLens && \\
pip install --upgrade /tmp/TraceLens && \\
rm -rf /tmp/TraceLens

WORKDIR /workspace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ COPY . /tmp/TraceLens
RUN VLLM_DIR=\$(python -c "import vllm, os; print(os.path.join(os.path.dirname(vllm.__file__), '..'))") && \\
cd "\${VLLM_DIR}" && \\
(git apply /tmp/TraceLens/${PATCH_PATH} || patch -p1 --fuzz=10 < /tmp/TraceLens/${PATCH_PATH}) && \\
pip install --no-deps /tmp/TraceLens && \\
pip install --upgrade /tmp/TraceLens && \\
rm -rf /tmp/TraceLens

WORKDIR /workspace
Expand Down
Loading