From 11d9a62473c0f8e02f16b426b09e036868928339 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 27 Jun 2020 10:41:15 +0200 Subject: [PATCH] Add Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile 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