Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
30 lines
514 B
30 lines
514 B
FROM debian:stretch |
|
|
|
# Install dependencies. We start with the basic ones required to build protoc |
|
# and the C++ build |
|
RUN apt-get update && apt-get install -y \ |
|
autoconf \ |
|
autotools-dev \ |
|
build-essential \ |
|
bzip2 \ |
|
ccache \ |
|
curl \ |
|
gcc \ |
|
git \ |
|
libc6 \ |
|
libc6-dbg \ |
|
libc6-dev \ |
|
libgtest-dev \ |
|
libtool \ |
|
make \ |
|
parallel \ |
|
time \ |
|
wget \ |
|
# Java dependencies |
|
maven \ |
|
openjdk-8-jdk \ |
|
# Python dependencies |
|
python3-setuptools \ |
|
python3-pip \ |
|
virtualenv \ |
|
&& apt-get clean
|
|
|