mirror of
https://github.com/wiiu-env/launchiine.git
synced 2024-11-24 10:49:16 +01:00
Add a Dockerfile
This commit is contained in:
parent
a37337ae9f
commit
ed61489bda
5
Dockerfile
Normal file
5
Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM wiiuenv/devkitppc:20200625
|
||||
|
||||
COPY --from=wiiuenv/libgui:20200626 /artifacts $DEVKITPRO
|
||||
|
||||
WORKDIR project
|
14
README.md
Normal file
14
README.md
Normal 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user