First commit
This commit is contained in:
commit
43eb1eaa64
4 changed files with 174 additions and 0 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM debian:bullseye-slim
|
||||
|
||||
RUN apt update \
|
||||
&& apt install -y --no-install-recommends \
|
||||
gcc-aarch64-linux-gnu \
|
||||
device-tree-compiler \
|
||||
make \
|
||||
bc \
|
||||
build-essential \
|
||||
bison \
|
||||
flex \
|
||||
bash \
|
||||
git \
|
||||
ca-certificates
|
||||
|
||||
COPY docker/entrypoint.sh /tmp
|
||||
COPY src/ /tmp
|
||||
WORKDIR /tmp
|
||||
CMD /tmp/entrypoint.sh
|
Loading…
Add table
Add a link
Reference in a new issue