1# Install Git and basic packages. 2RUN apt-get update && apt-get install -y ${'\\'} 3 autoconf ${'\\'} 4 autotools-dev ${'\\'} 5 build-essential ${'\\'} 6 bzip2 ${'\\'} 7 ccache ${'\\'} 8 curl ${'\\'} 9 dnsutils ${'\\'} 10 gcc ${'\\'} 11 gcc-multilib ${'\\'} 12 git ${'\\'} 13 golang ${'\\'} 14 gyp ${'\\'} 15 lcov ${'\\'} 16 libc6 ${'\\'} 17 libc6-dbg ${'\\'} 18 libc6-dev ${'\\'} 19 libgtest-dev ${'\\'} 20 libtool ${'\\'} 21 make ${'\\'} 22 perl ${'\\'} 23 strace ${'\\'} 24 python-dev ${'\\'} 25 python-setuptools ${'\\'} 26 python-yaml ${'\\'} 27 telnet ${'\\'} 28 unzip ${'\\'} 29 wget ${'\\'} 30 zip && apt-get clean 31 32#================ 33# Build profiling 34RUN apt-get update && apt-get install -y time && apt-get clean 35