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