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.
34 lines
687 B
34 lines
687 B
9 years ago
|
# Install Git and basic packages.
|
||
|
RUN apt-get update && apt-get install -y ${'\\'}
|
||
|
autoconf ${'\\'}
|
||
|
autotools-dev ${'\\'}
|
||
|
build-essential ${'\\'}
|
||
|
bzip2 ${'\\'}
|
||
|
ccache ${'\\'}
|
||
|
curl ${'\\'}
|
||
|
gcc ${'\\'}
|
||
|
gcc-multilib ${'\\'}
|
||
|
git ${'\\'}
|
||
|
golang ${'\\'}
|
||
|
gyp ${'\\'}
|
||
|
lcov ${'\\'}
|
||
|
libc6 ${'\\'}
|
||
|
libc6-dbg ${'\\'}
|
||
|
libc6-dev ${'\\'}
|
||
|
libgtest-dev ${'\\'}
|
||
|
libtool ${'\\'}
|
||
|
make ${'\\'}
|
||
|
perl ${'\\'}
|
||
|
strace ${'\\'}
|
||
|
python-dev ${'\\'}
|
||
|
python-setuptools ${'\\'}
|
||
|
python-yaml ${'\\'}
|
||
|
telnet ${'\\'}
|
||
|
unzip ${'\\'}
|
||
|
wget ${'\\'}
|
||
|
zip && apt-get clean
|
||
|
|
||
|
#================
|
||
|
# Build profiling
|
||
|
RUN apt-get update && apt-get install -y time && apt-get clean
|