libgui/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2022-01-09 13:45:55 +01:00
FROM wiiuenv/devkitppc:20211229
2018-09-22 17:44:39 +02:00
2020-06-27 12:43:40 +02:00
WORKDIR tmp_build
COPY . .
2022-01-09 13:45:55 +01:00
RUN make clean && make && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
2018-09-22 17:44:39 +02:00
WORKDIR /artifacts
2020-06-27 12:43:40 +02:00
FROM scratch
COPY --from=0 /artifacts /artifacts