Add a Dockerfile

This commit is contained in:
Maschell 2020-07-05 13:24:45 +02:00
parent a37337ae9f
commit ed61489bda
2 changed files with 19 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM wiiuenv/devkitppc:20200625
COPY --from=wiiuenv/libgui:20200626 /artifacts $DEVKITPRO
WORKDIR project

14
README.md Normal file
View File

@ -0,0 +1,14 @@
## 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 launchiine-builder
# make
docker run -it --rm -v ${PWD}:/project launchiine-builder make
# make clean
docker run -it --rm -v ${PWD}:/project launchiine-builder make clean
```