mirror of
https://github.com/wiiu-env/libkernel.git
synced 2024-11-01 02:25:11 +01:00
9 lines
281 B
Docker
9 lines
281 B
Docker
FROM ghcr.io/wiiu-env/devkitppc:20220806
|
|
|
|
WORKDIR tmp_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 |