diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-09 15:09:34 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-09 15:09:34 -0800 |
commit | af1158126075c007a0e2fcdf99609545685f62e6 (patch) | |
tree | 1e50761cd5a2414789cb51dc048c6fbd44c91682 /tools/dockerfile/test/python_pyenv_x64/Dockerfile | |
parent | 4d92a49fc0a96afc7f4539c0e600f06b6e4089f6 (diff) | |
parent | eb064ec7b81b60c5e1eb47d6124d0c05056b3097 (diff) |
Merge github.com:grpc/grpc into cpp_bazelness
Diffstat (limited to 'tools/dockerfile/test/python_pyenv_x64/Dockerfile')
-rw-r--r-- | tools/dockerfile/test/python_pyenv_x64/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/dockerfile/test/python_pyenv_x64/Dockerfile b/tools/dockerfile/test/python_pyenv_x64/Dockerfile index ecd785a86d..435a9fdc97 100644 --- a/tools/dockerfile/test/python_pyenv_x64/Dockerfile +++ b/tools/dockerfile/test/python_pyenv_x64/Dockerfile @@ -76,7 +76,7 @@ RUN apt-get update && apt-get install -y \ # Install Python packages from PyPI RUN pip install pip --upgrade RUN pip install virtualenv -RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.0.0a2 six==1.10.0 +RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.2.0 six==1.10.0 # Install dependencies for pyenv RUN apt-get update && apt-get install -y \ @@ -92,6 +92,9 @@ RUN apt-get update && apt-get install -y \ # Install Pyenv and dev Python versions 3.5 and 3.6 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 -)" +RUN eval "$(pyenv virtualenv-init -)" RUN pyenv update RUN pyenv install 3.5-dev RUN pyenv install 3.6-dev |