[Docker] Use make instead of make -jX

This commit is contained in:
Maschell 2020-08-12 23:08:35 +02:00
parent ef787e9016
commit 97bdfafa42

View File

@ -2,7 +2,7 @@ FROM wiiuenv/devkitppc:20200810
WORKDIR tmp_build
COPY . .
RUN make clean && make -j8 && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
RUN make clean && make && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
WORKDIR /artifacts
FROM scratch