From c7a40da972442808c37738bb4d4fec5e4445a628 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 27 Jun 2020 12:39:03 +0200 Subject: [PATCH] Add a Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..770dc41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM wiiuenv/devkitppc:20200625 + +WORKDIR tmp_build +COPY . . +RUN make clean && make -j8 && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr +WORKDIR /artifacts + +FROM scratch +COPY --from=0 /artifacts /artifacts \ No newline at end of file