mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
9 lines
250 B
Docker
9 lines
250 B
Docker
|
FROM wiiuenv/devkitppc:20210101
|
||
|
|
||
|
WORKDIR tmp_build
|
||
|
COPY . .
|
||
|
RUN make clean && make && mkdir -p /artifacts/wut/usr && cp -r lib /artifacts/wut/usr && cp -r include /artifacts/wut/usr
|
||
|
WORKDIR /artifacts
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=0 /artifacts /artifacts
|