libwuhbutils/Dockerfile

9 lines
250 B
Docker
Raw Permalink Normal View History

2023-06-21 21:51:48 +02:00
FROM ghcr.io/wiiu-env/devkitppc:20230621
2022-04-15 17:33:16 +02:00
WORKDIR tmp_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