mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-18 23:14:59 +02:00
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM alpine
|
|
RUN apk add alpine-sdk make curl xz bison
|
|
WORKDIR /src
|
|
COPY . /src
|
|
|
|
RUN make sources/gcc-13.2.0.tar.xz
|
|
RUN make sources/binutils-2.41.tar.xz
|
|
RUN make TARGET=aarch64-linux-musl
|