First commit (WIP)
This commit is contained in:
commit
1bbd8d5146
17 changed files with 15205 additions and 0 deletions
22
Dockerfile
Normal file
22
Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue