We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85da340 commit 8b475a9Copy full SHA for 8b475a9
pack/Dockerfile
@@ -250,19 +250,21 @@ EOF
250
251
## Install
252
253
-RUN --mount=type=cache,target=/root/.cache/uv \
+RUN --mount=type=cache,target=/root/.cache \
254
--mount=type=bind,target=/workspace/runtime,rw <<EOF
255
# Install gpustack-runtime
256
257
- cd /workspace/runtime
258
-
259
- make prepare
260
+ export PIP_NO_CACHE_DIR=0
+ export UV_NO_CACHE=0
261
export UV_SYSTEM_PYTHON=1
262
export UV_PRERELEASE=allow
263
export UV_LINK_MODE=copy
264
- export UV_NO_CACHE=0
265
- uv pip install .
+
+ cd /workspace/runtime \
+ && make prepare
266
+ uv pip install --no-build-isolation \
267
+ /workspace/runtime
268
uv pip tree
269
EOF
270
ENV GPUSTACK_RUNTIME_DEPLOY_MIRRORED_DEPLOYMENT="true" \
0 commit comments