libiosuhax/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2021-09-24 19:38:42 +02:00
FROM wiiuenv/devkitppc:20210920
2020-06-27 12:39:03 +02:00
WORKDIR tmp_build
COPY . .
2020-08-12 23:08:35 +02:00
RUN make clean && make && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
2020-06-27 12:39:03 +02:00
WORKDIR /artifacts
FROM scratch
COPY --from=0 /artifacts /artifacts