librpxloader/Dockerfile

9 lines
272 B
Docker
Raw Normal View History

2022-02-12 15:28:56 +01:00
FROM wiiuenv/devkitppc:20220212
2021-01-16 23:00:50 +01:00
WORKDIR tmp_build
COPY . .
RUN make clean && make && 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