1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#=================
# 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 ${'\\'}
g++ ${'\\'}
&& 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
|