Forgot to commit some files

pull/684/head
Jan Tattermusch 10 years ago
parent 213ecbfcfa
commit cad2782c6f
  1. 2
      tools/dockerfile/grpc_node_base/Dockerfile
  2. 5
      tools/dockerfile/grpc_ruby_base/Dockerfile

@ -15,6 +15,8 @@ RUN cd /var/local/git/grpc && \
git pull --recurse-submodules && \
git submodule update --init --recursive
# TODO: pre-building seems unnecessary, because we need to run make clean
# anyway to prevent build from crashing if header files are added/removed.
# Build the C core
RUN make static_c shared_c -j12 -C /var/local/git/grpc

@ -54,5 +54,10 @@ RUN cd /var/local/git/grpc/third_party/protobuf && \
./configure --prefix=/usr && \
make -j12 && make check && make install && make clean
# TODO: pre-building seems unnecessary, because we need to run make clean
# anyway to prevent build from crashing if header files are added/removed.
# Build the C core
RUN make static_c shared_c -j12 -C /var/local/git/grpc
# Define the default command.
CMD ["bash"]

Loading…
Cancel
Save