mirror of
https://github.com/brain-hackers/buildbrain
synced 2026-06-26 10:36:07 +09:00
37 lines
643 B
Docker
37 lines
643 B
Docker
ARG BUILDROOT_PLATFORM=linux/amd64
|
|
# TODO: Update to Trixie once we catch up with upstream Buildroot.
|
|
FROM --platform=${BUILDROOT_PLATFORM} debian:bookworm
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
bc \
|
|
bison \
|
|
build-essential \
|
|
bzip2 \
|
|
ca-certificates \
|
|
cmake \
|
|
cpio \
|
|
diffutils \
|
|
file \
|
|
flex \
|
|
gawk \
|
|
git \
|
|
libncurses-dev \
|
|
libssl-dev \
|
|
make \
|
|
patch \
|
|
perl \
|
|
python3 \
|
|
python3-dev \
|
|
rsync \
|
|
unzip \
|
|
wget \
|
|
xz-utils \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|
|
|
|
CMD ["bash"]
|