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

Merge pull request #350 from murgatroid99/node_dockerfile_fix

Set leaf dockerfiles to clean C library before rebuilding
parents 23c8d85e ea36c97b
Branches
Tags
No related merge requests found
...@@ -15,8 +15,5 @@ RUN cd /var/local/git/grpc && \ ...@@ -15,8 +15,5 @@ RUN cd /var/local/git/grpc && \
git pull --recurse-submodules && \ git pull --recurse-submodules && \
git submodule update --init --recursive git submodule update --init --recursive
# Build the C core
RUN make static_c shared_c -j12 -C /var/local/git/grpc
# Define the default command. # Define the default command.
CMD ["bash"] CMD ["bash"]
\ No newline at end of file
...@@ -88,8 +88,5 @@ RUN wget https://phar.phpunit.de/phpunit.phar \ ...@@ -88,8 +88,5 @@ RUN wget https://phar.phpunit.de/phpunit.phar \
&& chmod +x phpunit.phar \ && chmod +x phpunit.phar \
&& mv phpunit.phar /usr/local/bin/phpunit && mv phpunit.phar /usr/local/bin/phpunit
# Build the C core
RUN make static_c shared_c -j12 -C /var/local/git/grpc
# Define the default command. # Define the default command.
CMD ["bash"] CMD ["bash"]
...@@ -53,6 +53,3 @@ RUN cd /var/local/git/grpc/third_party/protobuf && \ ...@@ -53,6 +53,3 @@ RUN cd /var/local/git/grpc/third_party/protobuf && \
./autogen.sh && \ ./autogen.sh && \
./configure --prefix=/usr && \ ./configure --prefix=/usr && \
make -j12 && make check && make install && make clean make -j12 && make check && make install && make clean
# Build the C core
RUN make static_c shared_c -j12 -C /var/local/git/grpc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment