libkernel/Dockerfile

9 lines
276 B
Docker
Raw Normal View History

2020-08-12 19:41:41 +02:00
FROM wiiuenv/devkitppc:20200810
2020-06-27 10:41:15 +02:00
WORKDIR tmp_build
COPY . .
RUN make clean && make -j8 && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts