From b888d8f57b44f1680cafc866056894e5757cd6e3 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 21 Sep 2018 01:17:09 +0200 Subject: [PATCH] Add Dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2a5cfa6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM wiiulegacy/core:0.1 + +RUN rm -rf $DEVKITPRO/portlibs +RUN git clone https://github.com/Maschell/dynamic_libs -b lib +WORKDIR dynamic_libs +RUN git checkout -b v0.1 +RUN 7z x -y ./libs/portlibs.zip -o${DEVKITPRO} +RUN make && make install +WORKDIR .. +RUN rm -rf dynamic_libs \ No newline at end of file