remove parallel make so builds on low-memory dockerhub

This commit is contained in:
Jeffrey Paul 2016-08-19 17:16:13 +02:00
parent 6b588d5cf1
commit 2e84d5f16b
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ RUN \
git checkout $SECP256K1_REV && \ git checkout $SECP256K1_REV && \
./autogen.sh && \ ./autogen.sh && \
./configure && \ ./configure && \
make -j8 && \ make && \
./tests && \ ./tests && \
make install && \ make install && \
cd / && \ cd / && \
@ -67,7 +67,7 @@ RUN \
-DLOW_MEMORY_NODE=ON \ -DLOW_MEMORY_NODE=ON \
. \ . \
&& \ && \
make -j8 && \ make && \
make install && \ make install && \
rm -rf /usr/local/src/steem rm -rf /usr/local/src/steem