mirror of
https://github.com/wiiu-env/libiosuhax.git
synced 2024-11-23 17:49:17 +01:00
41a318cac5
Thanks to @koolkdev for figuring out the FSStat flags and structs. Thanks to WUT for the error codes.
9 lines
250 B
Docker
9 lines
250 B
Docker
FROM wiiuenv/devkitppc:20220507
|
|
|
|
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 |