WiiUModuleSystem/Dockerfile

9 lines
268 B
Docker
Raw Normal View History

2022-02-04 22:24:22 +01:00
FROM wiiuenv/devkitppc:20211229
2020-06-25 18:45:15 +02:00
WORKDIR build
COPY . .
2020-08-09 21:16:07 +02:00
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums
2020-06-25 18:45:15 +02:00
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts