libcontentredirection/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2023-06-21 11:32:38 +02:00
FROM ghcr.io/wiiu-env/devkitppc:20230621
2022-04-14 22:32:09 +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