WiiUModuleSystem/Dockerfile

9 lines
237 B
Docker
Raw Normal View History

2020-06-25 18:45:15 +02:00
FROM wiiuenv/devkitppc:20200625
WORKDIR build
COPY . .
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts