mirror of
https://github.com/wiiu-env/homebrew_on_menu_plugin.git
synced 2024-11-22 10:39:16 +01:00
16 lines
429 B
Markdown
16 lines
429 B
Markdown
|
|
||
|
## 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 homebrew_on_menu_plugin-builder
|
||
|
|
||
|
# make
|
||
|
docker run -it --rm -v ${PWD}:/project homebrew_on_menu_plugin-builder make
|
||
|
|
||
|
# make clean
|
||
|
docker run -it --rm -v ${PWD}:/project homebrew_on_menu_plugin-builder make clean
|
||
|
```
|