libiosuhax/Dockerfile
Crementif 41a318cac5 Support time, fix modes and translate errors
Thanks to @koolkdev for figuring out the FSStat flags and structs.
Thanks to WUT for the error codes.
2022-05-15 11:31:44 +02:00

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