-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathDockerfile
41 lines (36 loc) · 911 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
FROM debian:bookworm-backports
MAINTAINER Guy Sheffer <guysoft at gmail dot com>
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
sudo \
build-essential \
sudo \
curl \
git \
wget \
p7zip-full \
python3 \
python3-distutils \
python3-dev \
python3-git \
python3-yaml \
binfmt-support \
qemu-system \
qemu-user \
qemu-user-static \
sudo \
file \
fdisk \
btrfs-progs \
jq \
zip \
xz-utils \
lsof \
f2fs-tools \
&& rm -rf /var/lib/apt/lists/* \
&& apt -qyy clean
RUN ln -s /CustomPiOS/nightly_build_scripts/custompios_nightly_build /usr/bin/build
RUN ln -s /usr/bin/python3 /usr/bin/python
COPY . /CustomPiOS
CMD ["/bin/bash"]