mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-05 10:25:10 +01:00
9 lines
241 B
Docker
9 lines
241 B
Docker
|
FROM wiiuenv/devkitppc:20200625
|
||
|
|
||
|
WORKDIR tmp_build
|
||
|
COPY . .
|
||
|
RUN make clean && make && mkdir -p /artifacts/wups && cp -r lib /artifacts/wups && cp -r include /artifacts/wups
|
||
|
WORKDIR /artifacts
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=0 /artifacts /artifacts
|