Merge pull request #99 from fengli79/master

Remove the -j option of make to reduce memory consumption.
This commit is contained in:
Feng Li 2017-06-09 13:41:12 -07:00 committed by GitHub
commit e760dc14cf
3 changed files with 3 additions and 3 deletions

View File

@ -14,6 +14,6 @@ RUN apt-get update && apt-get install -y \
zip
COPY . /github/grpc-web
RUN cd /github/grpc-web/third_party/grpc && \
make -j
make
RUN cd /github/grpc-web && \
make

View File

@ -27,6 +27,6 @@ RUN update-alternatives \
--slave /usr/bin/g++ g++ /usr/bin/g++-4.6
COPY . /github/grpc-web
RUN cd /github/grpc-web/third_party/grpc && \
make -j
make
RUN cd /github/grpc-web && \
make

View File

@ -15,6 +15,6 @@ RUN apt-get update && apt-get install -y \
zip
COPY . /github/grpc-web
RUN cd /github/grpc-web/third_party/grpc && \
make -j
make
RUN cd /github/grpc-web && \
make