mirror of
https://github.com/wiiu-env/WiiUModuleSystem.git
synced 2024-11-14 14:05:08 +01:00
9 lines
268 B
Docker
9 lines
268 B
Docker
FROM wiiuenv/devkitppc:20200810
|
|
|
|
WORKDIR build
|
|
COPY . .
|
|
RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums && cp -r include /artifacts/wums && cp -r share /artifacts/wums
|
|
WORKDIR /artifacts
|
|
|
|
FROM scratch
|
|
COPY --from=0 /artifacts /artifacts |