From a6ca958f7b5151b8fbd60f3b06eceae0d7eba999 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 5 Feb 2022 14:12:04 +0100 Subject: [PATCH] Update the README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index bf92eb1..a8e6cfe 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,16 @@ Make you to have [wut](https://github.com/devkitPro/wut/) installed and use the make install ``` +## Use this lib in Dockerfiles. +A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile. +``` +[...] +COPY --from=wiiuenv/libiosuhax:[tag] /artifacts $DEVKITPRO +[...] +``` +Replace [tag] with a tag you want to use, a list of tags can be found [here](https://hub.docker.com/r/wiiuenv/libiosuhax/tags). +It's highly recommended to pin the version to the **latest date** instead of using `latest`. + ## Format the code via docker `docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source ./include -i`