diff --git a/Dockerfile b/Dockerfile index a1de57d249..162620b4c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,15 @@ FROM rust:latest -RUN apt-get update && apt-get install -y clang libclang-dev cmake +RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool + +RUN git clone https://github.com/google/protobuf.git && \ + cd protobuf && \ + ./autogen.sh && \ + ./configure && \ + make && \ + make install && \ + ldconfig && \ + make clean && \ + cd .. && \ + rm -r protobuf