From 915bb51c9c62040df2018b224ad843d8a5b0dda6 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 5 Jul 2020 13:55:38 +0200 Subject: [PATCH] Add a Dockerfile --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index ec2ddec..144ee38 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,22 @@ Avoid the pipes and the floor! ## Building In order to build this application, you need [wut](https://github.com/devkitPro/wut/) and [libgui](https://github.com/wiiu-env/libgui) installed. + +## Building using the Dockerfile + +It's possible to use a docker image for building. This way you don't need anything installed on your host system. + +``` +# Build docker image (only needed once) +docker build . -t flappybirdgx2-builder + +# make +docker run -it --rm -v ${PWD}:/project flappybirdgx2-builder make + +# make clean +docker run -it --rm -v ${PWD}:/project flappybirdgx2-builder make clean +``` + ## Credits - **dimok**: WiiU librabries, dynamic_libs, examples, Homebrew Launcher - **Maschell**: GX2_Example, coding help, code update for the latest libgui and wut