Skip to content
Snippets Groups Projects
Commit 7d5b1027 authored by Tim Emiola's avatar Tim Emiola
Browse files

Updates java_base to pull in protobuf

parent 6ed6036e
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,13 @@ RUN mkdir -p $HOME/.ssh && echo 'Host github.com' > $HOME/.ssh/config ...@@ -28,6 +28,13 @@ RUN mkdir -p $HOME/.ssh && echo 'Host github.com' > $HOME/.ssh/config
RUN echo " IdentityFile /.ssh/github.rsa" >> $HOME/.ssh/config RUN echo " IdentityFile /.ssh/github.rsa" >> $HOME/.ssh/config
RUN echo 'StrictHostKeyChecking no' >> $HOME/.ssh/config RUN echo 'StrictHostKeyChecking no' >> $HOME/.ssh/config
# Get the protobuf source from GitHub and install it
RUN git clone --recursive git@github.com:google/protobuf.git /var/local/git/protobuf
RUN cd /var/local/git/protobuf && \
./autogen.sh && \
./configure --prefix=/usr && \
make -j12 && make check && make install && make clean
# Get the source from GitHub # Get the source from GitHub
RUN git clone --recursive git@github.com:google/grpc-java.git /var/local/git/grpc-java RUN git clone --recursive git@github.com:google/grpc-java.git /var/local/git/grpc-java
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment