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.

41 lines
818 B

#=================
# Basic C core dependencies
# C/C++ dependencies according to https://github.com/grpc/grpc/blob/master/BUILDING.md
RUN apt-get update && apt-get install -y ${'\\'}
build-essential ${'\\'}
autoconf ${'\\'}
libtool ${'\\'}
pkg-config ${'\\'}
&& apt-get clean
# GCC
RUN apt-get update && apt-get install -y ${'\\'}
gcc ${'\\'}
gcc-multilib ${'\\'}
g++ ${'\\'}
g++-multilib ${'\\'}
&& apt-get clean
# libc6
RUN apt-get update && apt-get install -y ${'\\'}
libc6 ${'\\'}
libc6-dbg ${'\\'}
libc6-dev ${'\\'}
&& apt-get clean
# Tools
RUN apt-get update && apt-get install -y ${'\\'}
bzip2 ${'\\'}
curl ${'\\'}
dnsutils ${'\\'}
git ${'\\'}
lcov ${'\\'}
make ${'\\'}
strace ${'\\'}
time ${'\\'}
unzip ${'\\'}
wget ${'\\'}
zip ${'\\'}
&& apt-get clean