From 9997faaa1e7b0e41c21659c85f37f9bebcb4f40c Mon Sep 17 00:00:00 2001 From: Donato Capitella Date: Sun, 8 Mar 2026 16:31:16 +0000 Subject: [PATCH] build: Add `--no-deps` flag to local wheel installation. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 210e7af..9fea0c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,7 +70,7 @@ RUN export HIP_DEVICE_LIB_PATH=$(find /opt/rocm -type d -name bitcode -print -qu echo "Compiling with Bitcode: $HIP_DEVICE_LIB_PATH" && \ export CMAKE_ARGS="-DROCM_PATH=/opt/rocm -DHIP_PATH=/opt/rocm -DAMDGPU_TARGETS=gfx1151 -DHIP_ARCHITECTURES=gfx1151" && \ python -m pip wheel --no-build-isolation --no-deps -w /tmp/dist -v . && \ - python -m pip install /tmp/dist/*.whl + python -m pip install --no-deps /tmp/dist/*.whl RUN python -m pip install ray