diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a6b99b2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM wiiuenv/devkitppc:20200625 + +WORKDIR tmp_build +COPY . . +RUN make clean && make -j8 && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums +WORKDIR /artifacts + +FROM scratch +COPY --from=0 /artifacts /artifacts \ No newline at end of file