Go to file
Maschell 7ad9df8a8c Format code 2022-01-26 23:20:21 +01:00
.github/workflows [CI] Fix asset content type 2022-01-26 14:23:56 +01:00
src Format code 2022-01-26 23:20:21 +01:00
.gitignore first commit 2021-01-01 01:39:28 +01:00
Dockerfile Update Dockerfile for WUMS 0.3.1 support 2022-01-26 14:25:47 +01:00
Makefile Do logging only when built with `make DEBUG = 1` 2022-01-26 14:25:34 +01:00
README.md first commit 2021-01-01 01:39:28 +01:00

README.md

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 rpxloadingmodule-builder

# make 
docker run -it --rm -v ${PWD}:/project rpxloadingmodule-builder make

# make clean
docker run -it --rm -v ${PWD}:/project rpxloadingmodule-builder make clean