This is an automated email from the ASF dual-hosted git repository. rhoughton pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git
commit 07032b448befc0b2820abba52056f69c20b0bdd4 Author: Robert Houghton <[email protected]> AuthorDate: Wed Jul 17 11:09:29 2019 -0700 Install Python 2 in meta-mini-image Alpine no longer includes python 2 as part of the base image, so we need to install it. Co-authored-by: Sean Goller <[email protected]> Co-authored-by: Bala Kaza Venkata <[email protected]> --- ci/images/meta-mini/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/images/meta-mini/Dockerfile b/ci/images/meta-mini/Dockerfile index c021e92..97886eb 100644 --- a/ci/images/meta-mini/Dockerfile +++ b/ci/images/meta-mini/Dockerfile @@ -21,6 +21,7 @@ RUN apk --no-cache add \ bash \ curl \ jq \ + python2 \ python3 \ && pip3 install --upgrade pip \ && pip3 install Jinja2 pyYAML
