File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,9 @@ ENV UV_HTTP_TIMEOUT=500
162162COPY requirements/lint.txt requirements/lint.txt
163163COPY requirements/test.txt requirements/test.txt
164164COPY requirements/dev.txt requirements/dev.txt
165+ # Workaround for #17068
166+ RUN --mount=type=cache,target=/root/.cache/uv \
167+ uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
165168RUN --mount=type=cache,target=/root/.cache/uv \
166169 uv pip install --system -r requirements/dev.txt
167170# ################### DEV IMAGE ####################
@@ -265,6 +268,9 @@ ADD . /vllm-workspace/
265268ENV UV_HTTP_TIMEOUT=500
266269
267270# install development dependencies (for testing)
271+ # Workaround for #17068
272+ RUN --mount=type=cache,target=/root/.cache/uv \
273+ uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
268274RUN --mount=type=cache,target=/root/.cache/uv \
269275 uv pip install --system -r requirements/dev.txt
270276
You can’t perform that action at this time.
0 commit comments