22 lines
627 B
Docker
22 lines
627 B
Docker
FROM debian:bullseye-slim
|
|
|
|
RUN apt update \
|
|
&& apt install -y --no-install-recommends gzip \
|
|
gcc-aarch64-linux-gnu \
|
|
make \
|
|
bc \
|
|
device-tree-compiler \
|
|
qemu-system-aarch64 \
|
|
qemu-user-static \
|
|
build-essential \
|
|
bison flex \
|
|
libssl-dev \
|
|
bash \
|
|
git \
|
|
ca-certificates
|
|
|
|
COPY docker/entrypoint.sh /tmp
|
|
COPY src/ /tmp
|
|
WORKDIR /tmp
|
|
CMD /tmp/entrypoint.sh
|
|
#CMD bash
|