mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
548 B
19 lines
548 B
9 years ago
|
# Install dependencies for pyenv
|
||
|
RUN apt-get update && apt-get install -y ${'\\'}
|
||
|
libbz2-dev ${'\\'}
|
||
|
libncurses5-dev ${'\\'}
|
||
|
libncursesw5-dev ${'\\'}
|
||
|
libreadline-dev ${'\\'}
|
||
|
libsqlite3-dev ${'\\'}
|
||
|
libssl-dev ${'\\'}
|
||
|
llvm ${'\\'}
|
||
|
mercurial ${'\\'}
|
||
|
zlib1g-dev && apt-get clean
|
||
|
|
||
|
# 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
|
||
|
RUN pyenv update
|
||
|
RUN pyenv install 3.5-dev
|
||
|
RUN pyenv install 3.6-dev
|
||
|
RUN pyenv local 3.5-dev 3.6-dev
|