aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/apt_get_pyenv.include
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-06-11 16:33:15 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-06-11 16:33:15 -0700
commitdddf20793269a7ba5f658ae5fdcde2c175cf196b (patch)
tree595d0fbc0c501132857b63f00f073ec6a0f54f58 /templates/tools/dockerfile/apt_get_pyenv.include
parent935ae7d01242c21f0230ead18927087a70c03e5b (diff)
parent37b292a0f7500e434c9ae41919248e2641ddc7f1 (diff)
Merge branch 'master' into epollerr
Diffstat (limited to 'templates/tools/dockerfile/apt_get_pyenv.include')
-rw-r--r--templates/tools/dockerfile/apt_get_pyenv.include5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/tools/dockerfile/apt_get_pyenv.include b/templates/tools/dockerfile/apt_get_pyenv.include
index ef0964e597..e12b3e2c7f 100644
--- a/templates/tools/dockerfile/apt_get_pyenv.include
+++ b/templates/tools/dockerfile/apt_get_pyenv.include
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y ${'\\'}
mercurial ${'\\'}
zlib1g-dev && apt-get clean
-# Install Pyenv and dev Python versions 3.5 and 3.6
+# Install Pyenv and dev Python versions 3.{5,6,7}
RUN curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
ENV PATH /root/.pyenv/bin:$PATH
RUN eval "$(pyenv init -)"
@@ -18,5 +18,6 @@ RUN eval "$(pyenv virtualenv-init -)"
RUN pyenv update
RUN pyenv install 3.5-dev
RUN pyenv install 3.6-dev
+RUN pyenv install 3.7-dev
RUN pyenv install pypy-5.3.1
-RUN pyenv local 3.5-dev 3.6-dev pypy-5.3.1
+RUN pyenv local 3.5-dev 3.6-dev 3.7-dev pypy-5.3.1