Add a Dockerfile

This commit is contained in:
Maschell 2020-06-27 12:22:28 +02:00
parent 65246914e8
commit 15ac07ee0c
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM wiiuenv/devkitppc:20200625
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
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts