Added gRPC installation to the Dockerfile, as it is needed to compile.
This commit is contained in:
parent
c6d3636d0d
commit
b6fcb8da94
13
Dockerfile
13
Dockerfile
@ -1,4 +1,15 @@
|
|||||||
FROM rust:latest
|
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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user