Skip to content

Commit 7a30645

Browse files
authored
Merge pull request #335 from pjonsson/limit-make-parallelism
Dockerfile: limit make parallelism
2 parents 4e4862e + a4109ad commit 7a30645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ COPY --chown=docker:docker . .
4545
RUN echo "building FORCE" && \
4646
./debug.sh $debug && \
4747
sed -i "/^INSTALLDIR=/cINSTALLDIR=$INSTALL_DIR/" Makefile && \
48-
make -j && \
48+
make -j$(nproc) && \
4949
make install && \
5050
make clean && \
5151
cd $HOME && \

0 commit comments

Comments
 (0)