[Docker] Use make instead of make -jX

This commit is contained in:
Maschell 2020-08-12 22:45:13 +02:00
parent e7a18433a8
commit e155bd4173
1 changed files with 1 additions and 1 deletions

View File

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