From 5be3a6216e512a403625985a3286fa1a573a31d6 Mon Sep 17 00:00:00 2001 From: Conor Hoekstra <36027403+codereport@users.noreply.github.com> Date: Wed, 21 Apr 2021 16:45:13 -0400 Subject: [PATCH] Update `ci/local/build.sh` default `$DOCKER_IMAGE` (#8013) `DOCKER_IMAGE` is out of date since https://github.com/rapidsai/cudf/pull/7953 was merged. This fixes that. Authors: - Conor Hoekstra (https://github.com/codereport) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: https://github.com/rapidsai/cudf/pull/8013 --- ci/local/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/local/build.sh b/ci/local/build.sh index 6ee415605b6..1bfb8b63fef 100755 --- a/ci/local/build.sh +++ b/ci/local/build.sh @@ -3,7 +3,7 @@ GIT_DESCRIBE_TAG=`git describe --tags` MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'` -DOCKER_IMAGE="gpuci/rapidsai:${MINOR_VERSION}-cuda10.1-devel-ubuntu16.04-py3.7" +DOCKER_IMAGE="gpuci/rapidsai:${MINOR_VERSION}-cuda11.0-devel-ubuntu18.04-py3.7" REPO_PATH=${PWD} RAPIDS_DIR_IN_CONTAINER="/rapids" CPP_BUILD_DIR="cpp/build"