13 lines
482 B
Docker
13 lines
482 B
Docker
FROM gitea.okami101.io/okami101/stagex/core-binutils:latest AS binutils
|
|
FROM gitea.okami101.io/okami101/stagex/core-gcc:latest AS gcc
|
|
FROM gitea.okami101.io/okami101/stagex/core-make:latest AS make
|
|
FROM gitea.okami101.io/okami101/stagex/core-musl:latest AS musl
|
|
FROM gitea.okami101.io/okami101/stagex/core-busybox:latest AS busybox
|
|
|
|
FROM scratch AS bootstrap-c-toolchain
|
|
COPY --from=binutils / /
|
|
COPY --from=gcc / /
|
|
COPY --from=make / /
|
|
COPY --from=musl / /
|
|
COPY --from=busybox / /
|