Skip to content
Snippets Groups Projects
Commit ea36c97b authored by murgatroid99's avatar murgatroid99
Browse files

Removed redundant call to make in grpc_*_base Dockerfiles

parent ba116528
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,6 @@ RUN cd /var/local/git/grpc \ ...@@ -7,7 +7,6 @@ RUN cd /var/local/git/grpc \
&& git submodule update --init --recursive && git submodule update --init --recursive
# Install the C core. # Install the C core.
RUN make clean -C /var/local/git/grpc
RUN make install_c -C /var/local/git/grpc RUN make install_c -C /var/local/git/grpc
RUN cd /var/local/git/grpc/src/node && npm install && node-gyp rebuild RUN cd /var/local/git/grpc/src/node && npm install && node-gyp rebuild
......
...@@ -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
...@@ -5,7 +5,6 @@ RUN cd /var/local/git/grpc \ ...@@ -5,7 +5,6 @@ RUN cd /var/local/git/grpc \
&& git pull --recurse-submodules \ && git pull --recurse-submodules \
&& git submodule update --init --recursive && git submodule update --init --recursive
RUN make clean -C /var/local/git/grpc
RUN make install_c -j12 -C /var/local/git/grpc RUN make install_c -j12 -C /var/local/git/grpc
RUN cd /var/local/git/grpc/src/php/ext/grpc && git pull && phpize RUN cd /var/local/git/grpc/src/php/ext/grpc && git pull && phpize
......
...@@ -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"]
...@@ -10,7 +10,6 @@ RUN cd /var/local/git/grpc \ ...@@ -10,7 +10,6 @@ RUN cd /var/local/git/grpc \
RUN touch /var/local/git/grpc/include/grpc/support/string.h RUN touch /var/local/git/grpc/include/grpc/support/string.h
# Build the C core. # Build the C core.
RUN make clean -C /var/local/git/grpc
RUN make install_c -C /var/local/git/grpc RUN make install_c -C /var/local/git/grpc
# Build ruby gRPC and run its tests # Build ruby gRPC and run its tests
......
...@@ -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.
Finish editing this message first!
Please register or to comment