mirror of https://github.com/grpc/grpc-web.git
Merge pull request #99 from fengli79/master
Remove the -j option of make to reduce memory consumption.
This commit is contained in:
commit
e760dc14cf
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue