File tree 1 file changed +6
-0
lines changed
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
162
162
COPY requirements/lint.txt requirements/lint.txt
163
163
COPY requirements/test.txt requirements/test.txt
164
164
COPY 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
165
168
RUN --mount=type=cache,target=/root/.cache/uv \
166
169
uv pip install --system -r requirements/dev.txt
167
170
# ################### DEV IMAGE ####################
@@ -265,6 +268,9 @@ ADD . /vllm-workspace/
265
268
ENV UV_HTTP_TIMEOUT=500
266
269
267
270
# 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
268
274
RUN --mount=type=cache,target=/root/.cache/uv \
269
275
uv pip install --system -r requirements/dev.txt
270
276
You can’t perform that action at this time.
0 commit comments