Move Dockerfile to different repo due to Docker layer caching being braindead

This commit is contained in:
Adam Baxter 2024-01-13 18:54:50 +11:00
parent ea3f6da2ef
commit 900c25e96d
3 changed files with 1 additions and 13 deletions

View File

@ -1 +0,0 @@
Dockerfile

View File

@ -1,11 +0,0 @@
FROM alpine as build
RUN apk add alpine-sdk make curl xz bison linux-headers
WORKDIR /src
COPY . /src
RUN make sources/gcc-13.2.0.tar.xz
RUN make sources/binutils-2.41.tar.xz
RUN make -j$(nproc) TARGET=aarch64-linux-musl
RUN make install TARGET=aarch64-linux-musl

View File

@ -9,7 +9,7 @@ MPC_VER = 1.3.1
MPFR_VER = 4.2.1
LINUX_VER = 6.3.3
GNU_SITE = https://mirror.aarnet.edu.au/pub/gnu/
GNU_SITE = https://ftpmirror.gnu.org/gnu
GCC_SITE = $(GNU_SITE)/gcc
BINUTILS_SITE = $(GNU_SITE)/binutils
GMP_SITE = $(GNU_SITE)/gmp