aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Adele Zhou <adelez@google.com>2017-07-17 13:48:08 -0700
committerGravatar Adele Zhou <adelez@google.com>2017-07-17 13:48:17 -0700
commit457b02e6b2ef32b2e57430250ac5fcb8d04237e1 (patch)
tree85f256b422c3df690a5d907d184c7f29a688d727 /tools/run_tests
parent4708a21c8144f9fed3c90ea8fa153aa20302a1d7 (diff)
Fix image path when pulled from dockerhub.
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/dockerize/build_interop_image.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/dockerize/build_interop_image.sh b/tools/run_tests/dockerize/build_interop_image.sh
index 77c7a84828..9d8ad5325c 100755
--- a/tools/run_tests/dockerize/build_interop_image.sh
+++ b/tools/run_tests/dockerize/build_interop_image.sh
@@ -69,8 +69,8 @@ fi
if [ "$DOCKERHUB_ORGANIZATION" != "" ]
then
- DOCKER_IMAGE_NAME=$DOCKERHUB_ORGANIZATION/$BASE_IMAGE
- docker pull $DOCKER_IMAGE_NAME
+ BASE_IMAGE=$DOCKERHUB_ORGANIZATION/$BASE_IMAGE
+ docker pull $BASE_IMAGE
else
# Make sure docker image has been built. Should be instantaneous if so.
docker build -t $BASE_IMAGE --force-rm=true tools/dockerfile/interoptest/$BASE_NAME || exit $?