commit 56320edb0321fd2e0bb694d55d1ea28e8b728a25 Author: Maschell Date: Sat Sep 22 20:45:33 2018 +0200 First commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1a95848 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM wiiulegacy/core:0.1 + +MAINTAINER Maschell + +RUN apt-get update && \ + apt-get install -y --no-install-recommends cmake --fix-missing + +ENV WUT_ROOT=${DEVKITPRO}/wut + +RUN wget https://github.com/decaf-emu/wut/releases/download/1.0.0-beta4/wut.linux64.7z && \ + 7z x -y $(ls | grep "linux") -o${WUT_ROOT} && \ + rm wut.linux64.7z