aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Noble <nicolasnoble@users.noreply.github.com>2018-05-21 10:43:05 -0700
committerGitHub <noreply@github.com>2018-05-21 10:43:05 -0700
commite85f493883ea62de8ba0398b490a2b7c111b9de7 (patch)
treef8e071ce983e40e8a08350671595d7c30e2d4473
parent97336c7f19d012fa4d28e5af3e2955670bdc0ce1 (diff)
parentacad3cc9348aa175c8622c9b4300392471e71086 (diff)
downloadgrpc-grpc-e85f493883ea62de8ba0398b490a2b7c111b9de7.tar.gz
Merge pull request #15486 from mehrdada/fix-alpine-dockerfile-bash
Install bash in alpine distribtest image
-rw-r--r--tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile b/tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile
index 0fc3c31281..24e3a4b2eb 100644
--- a/tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile
+++ b/tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile
@@ -19,3 +19,9 @@ RUN apk add --update build-base python python-dev py-pip
RUN pip install --upgrade pip
RUN pip install virtualenv
+
+# bash is required for our test script invocation
+# ideally, we want to fix the invocation mechanism
+# so we can remove this, but it has to be here for
+# now:
+RUN apk add --update bash