File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ RUN mkdir -p /opt/protobuf-src \
126126 && tar xzf /opt/protobuf.tar.gz --strip-components 1 -C /opt/protobuf-src \
127127 && cd /opt/protobuf-src \
128128 && ./configure --prefix=/opt/protobuf \
129+ && make "-j$(nproc)" \
129130 && make install \
130131 && cd /root \
131132 && rm -rf /opt/protobuf-src
@@ -192,7 +193,7 @@ RUN mkdir -p /opt/isa-l-src \
192193 && cd /opt/isa-l-src \
193194 && ./autogen.sh \
194195 && ./configure \
195- && make \
196+ && make "-j$(nproc)" \
196197 && make install \
197198 && cd /root \
198199 && rm -rf /opt/isa-l-src
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ RUN mkdir -p /opt/protobuf-src \
117117 && tar xzf /opt/protobuf.tar.gz --strip-components 1 -C /opt/protobuf-src \
118118 && cd /opt/protobuf-src \
119119 && ./configure --prefix=/opt/protobuf \
120+ && make "-j$(nproc)" \
120121 && make install \
121122 && cd /root \
122123 && rm -rf /opt/protobuf-src
You can’t perform that action at this time.
0 commit comments