libromfs_wiiu/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2021-01-01 01:43:50 +01:00
FROM wiiuenv/devkitppc:20200810
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