File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,8 @@ 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
165
# Workaround for #17068
166
- RUN pip install mamba-ssm==2.2.4
166
+ RUN --mount=type=cache,target=/root/.cache/uv \
167
+ uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
167
168
RUN --mount=type=cache,target=/root/.cache/uv \
168
169
uv pip install --system -r requirements/dev.txt
169
170
# ################### DEV IMAGE ####################
@@ -268,7 +269,8 @@ ENV UV_HTTP_TIMEOUT=500
268
269
269
270
# install development dependencies (for testing)
270
271
# Workaround for #17068
271
- RUN pip install mamba-ssm==2.2.4
272
+ RUN --mount=type=cache,target=/root/.cache/uv \
273
+ uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
272
274
RUN --mount=type=cache,target=/root/.cache/uv \
273
275
uv pip install --system -r requirements/dev.txt
274
276
You can’t perform that action at this time.
0 commit comments