removed temporary patch as it causes more issues.

This commit is contained in:
Eugene Rakhmatulin
2026-03-28 17:49:17 -07:00
parent 47f5f931b5
commit 32674c2619

View File

@@ -183,14 +183,14 @@ RUN if [ -n "$VLLM_PRS" ]; then \
fi fi
# TEMPORARY PATCH for broken compilation # TEMPORARY PATCH for broken compilation
RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38423.diff -o pr38423.diff \ # RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38423.diff -o pr38423.diff \
&& if git apply --reverse --check pr38423.diff 2>/dev/null; then \ # && if git apply --reverse --check pr38423.diff 2>/dev/null; then \
echo "Patch already applied, skipping."; \ # echo "Patch already applied, skipping."; \
else \ # else \
echo "Applying patch..."; \ # echo "Applying patch..."; \
git apply -v pr38423.diff; \ # git apply -v pr38423.diff; \
fi \ # fi \
&& rm pr38423.diff # && rm pr38423.diff
# Prepare build requirements # Prepare build requirements
RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \ RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \