libiosuhax/Dockerfile
Maschell 7e4c2f13bd Format the code via clang-format
Add new Dockerfile for building the lib in pull requests

Fix formatting of ALIGN macro
2022-02-03 13:36:29 +01:00

9 lines
250 B
Docker

FROM wiiuenv/devkitppc:20211229
WORKDIR tmp_build
COPY . .
RUN make clean && make && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts