libromfs_wiiu/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2022-04-14 22:37:00 +02:00
FROM wiiuenv/devkitppc:20220303
2021-01-01 01:43:50 +01:00
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