From 18e75731bf31a18bbfe19bf0ba5571f83effa796 Mon Sep 17 00:00:00 2001 From: Emilio Castillo Date: Wed, 25 Aug 2021 07:42:47 +0000 Subject: [PATCH 1/2] bump docker to v10.0.0b2 --- docker/python3/Dockerfile | 2 +- docker/rocm/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/python3/Dockerfile b/docker/python3/Dockerfile index 725d02f4565..1766d6229c5 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 "cupy-cuda112[all]==10.0.0b2" diff --git a/docker/rocm/Dockerfile b/docker/rocm/Dockerfile index ecde16e9c09..6808b2bd73f 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 "cupy-rocm-4-0[all]==10.0.0b2" USER rocm-user From eb64d7858df8486fe4c0c659ea9b8e0ed056d607 Mon Sep 17 00:00:00 2001 From: emcastillo Date: Thu, 26 Aug 2021 13:55:09 +0900 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Kenichi Maehashi --- docker/python3/Dockerfile | 2 +- docker/rocm/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/python3/Dockerfile b/docker/python3/Dockerfile index 1766d6229c5..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.0b2" +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 6808b2bd73f..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.0b2" +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