diff --git a/docker/python3/Dockerfile b/docker/python3/Dockerfile index 725d02f4565..8bd319f04be 100644 --- a/docker/python3/Dockerfile +++ b/docker/python3/Dockerfile @@ -9,4 +9,4 @@ RUN apt-get update -y && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* RUN pip3 install --no-cache-dir -U install setuptools pip -RUN pip3 install --no-cache-dir "cupy-cuda112[all]==10.0.0b1" +RUN pip3 install --no-cache-dir -f https://github.com/cupy/cupy/releases/v10.0.0b2 "cupy-cuda112[all]==10.0.0b2" diff --git a/docker/rocm/Dockerfile b/docker/rocm/Dockerfile index ecde16e9c09..93e1b272a9a 100644 --- a/docker/rocm/Dockerfile +++ b/docker/rocm/Dockerfile @@ -13,6 +13,6 @@ RUN apt-get update -y && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* RUN pip3 install --no-cache-dir -U install setuptools pip -RUN pip3 install --no-cache-dir "cupy-rocm-4-0[all]==10.0.0b1" +RUN pip3 install --no-cache-dir -f https://github.com/cupy/cupy/releases/v10.0.0b2 "cupy-rocm-4-0[all]==10.0.0b2" USER rocm-user