12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
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 / /
|
Reference in New Issue
Block a user