mirror of
https://github.com/ApfelTeeSaft/vanilla.git
synced 2026-08-26 19:33:44 +00:00
40 lines
602 B
Docker
40 lines
602 B
Docker
FROM debian:bookworm
|
|
|
|
ARG ARCH=x86_64
|
|
ENV ARCH=${ARCH}
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV TZ=Etc/UTC
|
|
|
|
RUN apt -y update
|
|
|
|
RUN apt -y install which \
|
|
sed \
|
|
make \
|
|
binutils \
|
|
build-essential \
|
|
diffutils \
|
|
gcc \
|
|
g++ \
|
|
bash \
|
|
patch \
|
|
gzip \
|
|
bzip2 \
|
|
perl \
|
|
tar \
|
|
cpio \
|
|
unzip \
|
|
rsync \
|
|
file \
|
|
bc \
|
|
findutils \
|
|
gawk \
|
|
wget \
|
|
git
|
|
|
|
RUN git clone --depth 1 --branch 2025.11-rc2 https://github.com/buildroot/buildroot.git /buildroot
|
|
|
|
ENV FORCE_UNSAFE_CONFIGURE=1
|
|
|
|
ENTRYPOINT [ "/vanilla/docker/raspberrypi0w/build.sh" ]
|