-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDockerfile
44 lines (42 loc) · 806 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Our AIO builder docker file
FROM debian:11
RUN mkdir /repo
COPY ./scripts/docker/setup_mkimage.sh /setup_mkimage.sh
RUN apt-get update && apt-get install -yq \
autoconf \
bc \
binfmt-support \
bison \
bsdextrautils \
build-essential \
cpio \
debootstrap \
device-tree-compiler \
dosfstools \
fakeroot \
flex \
genext2fs \
git \
kmod \
kpartx \
libconfuse-common \
libconfuse-dev \
libssl-dev \
lvm2 \
mtools \
parted \
pkg-config \
python-dev \
python-setuptools \
python3-dev \
python3-setuptools \
qemu \
qemu-user-static \
rsync \
swig \
unzip \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& /setup_mkimage.sh \
&& rm /setup_mkimage.sh