Fix the Dockerfile, remove unneeded cp command

This commit is contained in:
Maschell 2022-03-04 00:13:19 +01:00
parent a6c7310a7e
commit 28bfbc1042
1 changed files with 1 additions and 1 deletions

View File

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